-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.16 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "bon-calculadora",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && chmod 755 build/index.js",
"build-prod": "NODE_ENV=production tsc && npm run optimize-prod",
"optimize-prod": "chmod 755 build/index.js && npm run bundle-deps",
"bundle-deps": "echo 'Production build complete'",
"clean": "rm -rf build",
"test-stdio": "npm run build && echo '{\"jsonrpc\":\"2.0\",\"id\":1,\"method\":\"initialize\",\"params\":{\"protocolVersion\":\"2024-11-05\",\"capabilities\":{},\"clientInfo\":{\"name\":\"test\",\"version\":\"1.0.0\"}}}' | node build/index.js",
"test-inspector": "npm run build && npx @modelcontextprotocol/inspector node build/index.js",
"start": "npm run build && node build/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.1.0",
"typescript": "^5.8.3"
},
"type": "module",
"bin": {
"bon-calculadora": "./build/index.js"
},
"files": [
"build"
]
}