package.json•940 B
{
"name": "mcp",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:prod": "tsc -p tsconfig.prod.json",
"start": "node dist/index.js",
"start:prod": "NODE_ENV=production node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prebuild:prod": "npm run clean"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@notionhq/client": "^3.1.3",
"@octokit/rest": "^22.0.0",
"@types/express": "^4.17.23",
"dotenv": "^17.0.0",
"express": "^4.21.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.0.7",
"jest": "^30.0.4",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}