-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.49 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.49 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
{
"name": "ai-cli-online",
"version": "3.0.17",
"description": "AI-Cli Online - Web Terminal for Claude Code via xterm.js + tmux",
"license": "MIT",
"bin": {
"ai-cli-online": "bin/ai-cli-online.mjs"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huacheng/ai-cli-online.git"
},
"homepage": "https://github.com/huacheng/ai-cli-online#readme",
"bugs": {
"url": "https://github.com/huacheng/ai-cli-online/issues"
},
"keywords": [
"terminal",
"web-terminal",
"xterm",
"tmux",
"claude",
"claude-code",
"cli"
],
"files": [
"bin/",
"shared/dist/",
"shared/package.json",
"server/dist/",
"server/package.json",
"server/.env.example",
"web/dist/",
"web/package.json",
"start.sh",
"install-service.sh"
],
"workspaces": [
"shared",
"server",
"web"
],
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:web\"",
"dev:server": "npm run dev --workspace=server",
"dev:web": "npm run dev --workspace=web",
"build": "npm run build --workspace=shared && npm run build --workspace=server && npm run build --workspace=web",
"start": "npm run start --workspace=server",
"test": "npm run test --workspace=server && npm run test --workspace=web",
"test:watch": "npm run test:watch --workspace=server"
},
"devDependencies": {
"concurrently": "^8.2.2",
"typescript": "^5.9.3",
"vitest": "^2.1.9"
}
}