-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.82 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.82 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
{
"name": "10x-genomics-mcp",
"version": "1.0.2",
"description": "10x Genomics Cloud MCP Server",
"type": "module",
"main": "server/index.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:prod": "tsc -p tsconfig.prod.json",
"clean": "rm -rf build/server",
"download-bin": "./tasks.sh download-bin",
"fix": "npm run lint:fix && npm run format:fix",
"format": "prettier . --cache --cache-location ./.cache/.prettier-cache --check",
"format:fix": "prettier . --cache --cache-location ./.cache/.prettier-cache --write",
"generate-capabilities": "npm run build:prod &&./tasks.sh generate-capabilities",
"lint": "eslint --cache --cache-location ./.cache/.eslint-cache",
"lint:fix": "eslint --cache --cache-location ./.cache/.eslint-cache --fix",
"pack": "./tasks.sh pack",
"release": "npm run clean && npm run lint:fix && npm run format:fix && npm run build:prod && npm run test && npm run generate-capabilities && npm run pack",
"start": "./tasks.sh run-server",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:coverage": "jest --coverage",
"test:integration": "jest tests/integration",
"test:unit": "jest tests/unit",
"test:watch": "jest --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.21.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@types/jest": "^30.0.0",
"@types/node": "^20.19.17",
"eslint": "^9.37.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.0.0",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"prettier-plugin-packagejson": "^2.5.19",
"ts-jest": "^29.4.5",
"tsx": "^4.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.0"
},
"engines": {
"node": ">=18.0.0"
}
}