-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 KB
/
package.json
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
36
37
38
39
40
{
"name": "verodat-mcp-server",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"bin": {
"verodat-consume": "./build/src/consume.js",
"verodat-design": "./build/src/design.js",
"verodat-manage": "./build/src/manage.js"
},
"scripts": {
"build": "tsc",
"start:consume": "node ./build/src/consume.js",
"start:design": "node ./build/src/design.js",
"start:manage": "node ./build/src/manage.js",
"test": "mocha --loader=ts-node/esm 'tests/**/*.test.ts'",
"test:watch": "mocha --loader=ts-node/esm 'tests/**/*.test.ts' --watch"
},
"files": [
"build"
],
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.5",
"@types/sinon": "^17.0.3",
"chai": "^5.1.2",
"mocha": "^11.0.1",
"sinon": "^19.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.3"
}
}