package.json•774 B
{
"name": "@columbia-mcp/shared-config",
"version": "1.0.0",
"private": true,
"type": "module",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --config jest.config.js",
"test:watch": "jest --config jest.config.js --watch",
"lint": "eslint src/**/*.ts tests/**/*.ts",
"clean": "rimraf build dist"
},
"dependencies": {
"ioredis": "^5.3.2"
},
"devDependencies": {
"@types/ioredis": "^5.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.19.74",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0",
"rimraf": "^5.0.0"
}
}