package.json•1.08 kB
{
"name": "grantmanship",
"version": "0.1.0",
"description": "A Model Context Protocol server with Grantsmanship to do Grant search",
"private": true,
"type": "module",
"bin": {
"grantmanship": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"test": "jest --config jest.config.js",
"test:watch": "jest --watch --config jest.config.js",
"test:coverage": "jest --coverage --config jest.config.js",
"test:ci": "jest --ci --coverage --config jest.config.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"axios": "^1.7.9",
"chalk": "^5.3.0",
"dotenv": "^16.4.7",
"exa-js": "^1.3.3"
},
"devDependencies": {
"@types/node": "^20.17.10",
"typescript": "^5.3.3",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2"
}
}