-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.15 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.15 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@mcp-sandbox/monorepo",
"version": "0.0.0-alpha.2",
"description": "Turn any JavaScript module into a sandboxed MCP (Model Context Protocol) server with automatic reflection and type inference",
"packageManager": "pnpm@10.6.0",
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r --parallel dev",
"clean": "pnpm -r clean && rm -rf node_modules",
"lint": "eslint .",
"format": "prettier . --write --ignore-path .prettierignore",
"format:check": "prettier . --check --ignore-path .prettierignore",
"test": "pnpm -r test",
"example:math": "pnpm build && node packages/cli/dist/index.js start examples/math-utils.js",
"example:string": "pnpm build && node packages/cli/dist/index.js start examples/string-utils.js",
"example:array": "pnpm build && node packages/cli/dist/index.js start examples/array-utils.js",
"example:filesystem": "pnpm build && node packages/cli/dist/index.js start examples/filesystem-utils.js",
"example:inspect": "pnpm build && node packages/cli/dist/index.js inspect examples/math-utils.js",
"example:generate": "pnpm build && node packages/cli/dist/index.js generate examples/math-utils.js --output math-config.json",
"cli": "pnpm build && node packages/cli/dist/index.js",
"release": "node ./packages/utils/dist/release.js"
},
"private": true,
"keywords": [
"mcp",
"model-context-protocol",
"javascript",
"typescript",
"sandbox",
"ai",
"llm",
"tools",
"reflection",
"automation",
"json-rpc",
"server-sent-events"
],
"homepage": "https://github.com/danstarns/mcp-sandbox",
"repository": {
"type": "git",
"url": "git+https://github.com/danstarns/mcp-sandbox.git"
},
"author": "Dan Starns",
"license": "MIT",
"bugs": {
"url": "https://github.com/danstarns/mcp-sandbox/issues"
},
"devDependencies": {
"@babel/cli": "7.24.8",
"@babel/core": "7.25.2",
"@babel/preset-env": "7.25.4",
"@babel/preset-typescript": "7.24.7",
"@babel/runtime": "7.25.6",
"@graphql-eslint/eslint-plugin": "^4.3.0",
"@jest/globals": "29.7.0",
"@types/debug": "^4.1.12",
"@types/jest": "^29.0.0",
"@types/node": "22.4.1",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "8.1.0",
"@typescript-eslint/parser": "8.0.1",
"@typescript-eslint/typescript-estree": "8.0.1",
"eslint": "8.57.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard-with-typescript": "43.0.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.8.0",
"eslint-plugin-n": "17.10.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "4.6.2",
"jest": "^29.0.0",
"prettier": "3.3.3",
"typescript": "5.8.3",
"next": "^15.3.1"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/*",
"typescript",
"ts-node",
"@tsconfig/*",
"@types/*",
"jest",
"@jest/*",
"supertest",
"prettier",
"webpack"
]
}
}
}