-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.43 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.43 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "di-mcp-server",
"version": "2.1.3",
"description": "",
"main": "build/index.js",
"scripts": {
"lint": "eslint src --ext .ts",
"build": "tsc && chmod 755 build/index.js",
"start": "node build/index.js",
"full-start": "npm run lint && npm run test && npm run build && node build/index.js",
"dev": "DEBUG=true nodemon",
"test": "jest",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DecisionsDev/decision-intelligence-mcp-server.git"
},
"author": "",
"license": "Apache-2.0",
"homepage": "https://github.com/DecisionsDev/decision-intelligence-mcp-server",
"dependencies": {
"@babel/preset-env": "^7.28.0",
"@modelcontextprotocol/sdk": "^1.25.1",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"axios": "^1.10.0",
"commander": "^14.0.0",
"openapi-types": "^12.1.3",
"typescript": "^5.8.3",
"zod-from-json-schema": "^0.5.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.32.0",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"babel-jest": "^30.0.5",
"eslint": "^10.0.3",
"jest": "^30.0.5",
"nock": "^14.0.7",
"nodemon": "^3.1.10",
"ts-jest": "^29.4.0",
"typescript-eslint": "^8.38.0"
},
"type": "module",
"module": "./build/index.js",
"bin": {
"di-mcp-server": "build/index.js"
},
"files": [
"build/**"
]
}