-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.98 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.98 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "node-code-sandbox-mcp",
"version": "1.1.0",
"type": "module",
"bin": {
"node-code-sandbox-mcp": "dist/server.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "node --env-file .env --watch src/server.ts",
"dev:evals": "node evals/index.ts",
"build": "rimraf dist && tsc -p tsconfig.build.json && shx chmod +x dist/*.js",
"start": "node dist/server.js",
"test": "vitest",
"test:coverage": "vitest --coverage",
"inspector": "npx @modelcontextprotocol/inspector npm run dev",
"lint": "eslint . --ext .ts --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write .",
"check": "npm run lint && npm run format",
"pre-commit": "lint-staged",
"prepublishOnly": "npm run build",
"prepare": "husky",
"release": "standard-version",
"major": "npm run release -- --release-as major",
"minor": "npm run release -- --release-as minor",
"patch": "npm run release -- --release-as patch",
"push-release": "git push --follow-tags origin master"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@modelcontextprotocol/sdk": "^1.11.4",
"dotenv": "^16.5.0",
"mime-types": "^3.0.1",
"openai": "^4.96.2",
"tmp": "^0.2.3",
"vitest": "^3.1.4",
"zod": "^3.25.17"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/lint-staged": "^13.3.0",
"@types/mime-types": "^2.1.4",
"@types/node": "^22.15.21",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@vitest/coverage-v8": "^3.1.2",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"shx": "^0.4.0",
"standard-version": "^9.5.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=23.10.0"
}
}