-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.16 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
{
"name": "@spencer-kit/coder-studio",
"version": "0.4.8",
"type": "module",
"description": "Deploy once, code everywhere. Browser-based AI coding workspace for Claude Code and Codex.",
"main": "./src/index.ts",
"bin": {
"coder-studio": "./src/bin.ts"
},
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts"
}
},
"files": ["dist", "src", "README.md", "CHANGELOG.md", "package.json"],
"publishConfig": {
"main": "./dist/esm/index.mjs",
"bin": {
"coder-studio": "./dist/bin.js"
},
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"types": "./dist/esm/index.d.mts"
}
}
},
"scripts": {
"build": "tsx ../../scripts/build-cli.ts",
"dev": "tsx ../../scripts/dev-server.ts",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest"
},
"dependencies": {
"@fastify/compress": "^8.3.1",
"@fastify/cors": "^11.2.0",
"@fastify/multipart": "^10.0.0",
"@fastify/static": "^9.1.3",
"@fastify/websocket": "^11.2.0",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/headless": "^6.0.0",
"chokidar": "^5.0.0",
"fastify": "^5.8.5",
"ignore": "^7.0.5",
"markdown-it": "^14.1.0",
"mime-types": "^2.1.35",
"node-pty": "^1.1.0",
"pino-pretty": "^13.1.3",
"pm2": "^7.0.1",
"typescript": "^6.0.3",
"typescript-language-server": "^5.2.0",
"uuid": "^14.0.0",
"vscode-jsonrpc": "^8.2.1",
"vscode-languageserver-protocol": "^3.17.5",
"ws": "^8.20.0",
"zod": "^4.4.2"
},
"devDependencies": {
"@coder-studio/core": "workspace:*",
"@coder-studio/server": "workspace:*",
"@types/node": "^25.6.0",
"@types/ws": "^8.18.1",
"tsx": "^4.21.0",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=24.0.0"
},
"keywords": ["cli", "coder-studio", "agent", "development", "tools"],
"author": "Coder Studio",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/spencerkit/coder-studio.git"
},
"bugs": {
"url": "https://github.com/spencerkit/coder-studio/issues"
},
"homepage": "https://github.com/spencerkit/coder-studio#readme"
}