-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 907 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 907 Bytes
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
{
"name": "define-mcp",
"version": "0.1.0",
"type": "module",
"description": "MCP server for CDISC Define-XML",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "tsx --test src/__tests__/**/*.test.ts",
"testj": "jest",
"lint": "eslint --ext .ts src --max-warnings=0",
"lint:fix": "eslint --ext .ts src --fix"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.0",
"express": "^4.21.2",
"parse-define-xml": "^0.1.7",
"zod": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/express": "^5.0.3",
"@types/node": "^24.3.0",
"eslint": "^9.0.0",
"jest": "^30.2.0",
"prettier": "^3.1.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0"
}
}