-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.59 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.59 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
97
{
"name": "shellby-mcp",
"version": "0.1.0",
"description": "Context-optimized agent harness that gives ChatGPT Web full computer access, persistent tools, and multi-agent capabilities.",
"private": false,
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Serbyte-Development/shellby-mcp.git"
},
"homepage": "https://github.com/Serbyte-Development/shellby-mcp#readme",
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"dev": "node --import tsx --watch src/index.ts",
"ui:install": "npm --prefix ui ci",
"ui:dev": "npm --prefix ui run dev",
"ui:build": "npm --prefix ui run build",
"preflight": "node --import tsx scripts/preflight.mjs",
"setup": "node --import tsx scripts/setup.mjs",
"setup:computer": "node scripts/peekaboo-permissions.mjs",
"setup:chatgpt": "node --import tsx scripts/chatgpt-browser.mjs --setup",
"start": "node --import tsx scripts/start.mjs",
"restart": "node --import tsx scripts/start.mjs --restart",
"pm2": "node --import tsx scripts/pm2.mjs",
"stop": "node --import tsx scripts/pm2.mjs stop ecosystem.config.cjs",
"status": "node --import tsx scripts/pm2.mjs status",
"logs": "node --import tsx scripts/pm2.mjs logs",
"print-url": "node --import tsx scripts/print-url.mjs",
"prompt": "node --import tsx scripts/print-start-prompt.ts",
"schemas": "node --import tsx scripts/tool-schemas.ts",
"inspect": "npx @modelcontextprotocol/inspector",
"tunnel": "node --import tsx scripts/pm2.mjs startOrReload ecosystem.config.cjs --only shellby-ngrok --update-env",
"auth:reset": "node --import tsx src/auth/reset.ts",
"reset-agents": "node --import tsx scripts/reset-agents.mjs",
"test": "tsx --test test/*.test.ts",
"test:live:subagent": "RUN_LIVE_SUBAGENT_TESTS=1 tsx --test test/live/subagent-live.test.ts",
"probe:chatgpt-cdp": "node --import tsx scripts/chatgpt-cdp-probe.mjs",
"probe:chatgpt-cdp:summary": "node scripts/summarize-chatgpt-cdp-probe.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit",
"vendor:apply-patch": "scripts/build-apply-patch.sh",
"vendor:peekaboo": "scripts/build-peekaboo.sh",
"vendor:pixel-agents": "node scripts/vendor-pixel-agents.mjs",
"vendor:pixel-agents:check": "node scripts/vendor-pixel-agents.mjs --check",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"format": "prettier --write src test scripts package.json tsconfig.json tsconfig.build.json eslint.config.js ecosystem.config.cjs"
},
"dependencies": {
"@modelcontextprotocol/express": "2.0.0",
"@modelcontextprotocol/node": "2.0.0",
"@modelcontextprotocol/server": "2.0.0",
"cloakbrowser": "^0.5.9",
"express": "^5.2.1",
"js-yaml": "5.2.3",
"linkedom": "^0.18.13",
"node-html-markdown": "^2.0.0",
"playwright-core": "^1.63.0",
"pm2": "^7.0.4",
"sharp": "^0.35.3",
"smol-toml": "1.8.0",
"tiktoken": "^1.0.22",
"unpdf": "1.8.1",
"zod": "^4.5.2"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@modelcontextprotocol/client": "2.0.0",
"@types/express": "^5.0.6",
"@types/node": "22.13.17",
"eslint": "^10.10.0",
"eslint-config-prettier": "10.1.8",
"prettier": "^3.9.6",
"tsx": "^4.23.12",
"typescript": "6.0.3",
"typescript-eslint": "^8.69.0"
},
"overrides": {
"pm2": {
"js-yaml": "5.2.3"
}
},
"os": [
"darwin"
],
"cpu": [
"arm64",
"x64"
],
"allowScripts": {
"esbuild@0.28.2": true,
"fsevents@2.3.3": true
}
}