-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 4.38 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 4.38 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "zcode-app-cli",
"version": "3.14.3-28",
"description": "Unofficial terminal client for the ZCode agent runtime",
"keywords": [
"agent",
"ai",
"cli",
"coding-agent",
"glm",
"node",
"pi-tui",
"terminal",
"tui",
"z-ai",
"zcode"
],
"homepage": "https://github.com/kingsword09/zcode-cli#readme",
"bugs": {
"url": "https://github.com/kingsword09/zcode-cli/issues"
},
"license": "MIT",
"author": "Kingsword kingsword09 <kingsword09@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/kingsword09/zcode-cli.git"
},
"type": "module",
"bin": {
"zcode": "bin/zcode.js"
},
"files": [
"bin/zcode.js",
"vendor",
"setting.example.json",
"provider.example.json",
"docs/CONFIGURATION.md",
"docs/CONFIGURATION.zh-CN.md",
"docs/PROVIDER_CONFIG.md",
"docs/PROVIDER_CONFIG.zh-CN.md",
"docs/THIRD_PARTY_CONTENT.md",
"LICENSES/Apache-2.0.txt",
"LICENSES/README.md",
"LICENSES/ZCode-NOTICE.md",
"LICENSES/ZCode-THIRD-PARTY-NOTICES.md",
"zcode-runtime.lock.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsdown",
"build:launcher": "tsdown --filter launcher",
"build:tui": "tsdown --filter tui",
"bench:tui-memory": "bun --expose-gc scripts/bench-tui-memory.ts",
"bench:tui-stream": "bun scripts/bench-tui-stream.ts",
"bench:tui-thinking": "bun scripts/bench-tui-thinking.ts",
"dev": "bun run sync:local && ZCODE_NODE=node bun bin/zcode.ts",
"sync": "bun run build && bun scripts/sync-runtime.ts",
"sync:locked": "bun run build && bun scripts/sync-runtime.ts --lock zcode-runtime.lock.json",
"sync:local": "bun run build && bun scripts/sync-runtime.ts --app /Applications/ZCode.app",
"check": "bun run build && bun scripts/check-runtime.ts",
"check:oauth-callback": "bun scripts/smoke-oauth-callback.ts",
"check:tui": "bun scripts/smoke-tui.ts && bun scripts/smoke-tui-features.ts && bun scripts/smoke-tui-clear.ts && bun scripts/smoke-tui-session-title.ts && bun scripts/smoke-tui-pressure.ts && bun scripts/smoke-tui-widths.ts && bun scripts/smoke-tui-fullscreen.ts && bun scripts/smoke-tui-fullscreen-switch.ts && bun scripts/smoke-tui-fullscreen-layout.ts",
"check:tui-scenarios": "bun run test:tui",
"test": "bun run test:unit",
"test:all": "bun run test:unit && bun run test:tui && bun run test:runtime && bun run test:node",
"test:unit": "bun test test/*.test.ts",
"test:fast": "bun run test:unit",
"test:runtime": "bun test test/runtime/*.test.ts",
"test:node": "node --test test/node/*.test.cjs",
"test:tui": "bun run test:tui:component && bun run test:tui:e2e",
"test:tui:component": "bun test test/tui/scenario-http.test.ts test/tui/scenario-runtime.test.ts test/tui/scenario-shell.test.ts test/tui/scenario-workspace.test.ts test/tui/terminal-screen.test.ts",
"test:tui:e2e": "bun test test/tui/allowlisted-shell.test.ts test/tui/dynamic-workflows.test.ts test/tui/http-mock.test.ts test/tui/input-actions.test.ts test/tui/model-resume.test.ts test/tui/permission-request-queue.test.ts test/tui/run-scenario.test.ts test/tui/runtime-refresh.test.ts test/tui/session-rename.test.ts test/tui/terminal-session.test.ts test/tui/write-and-diff.test.ts",
"test:tui:host": "bun test test/tui/scenario-mountx.test.ts",
"test:tui:manual": "bun scripts/tui-scenario.ts --manual",
"test:tui-scenario": "bun scripts/tui-scenario.ts",
"typecheck": "tsc --noEmit",
"verify:tui-perf": "bun scripts/verify-tui-perf.ts",
"version:build": "bun scripts/bump-build.ts",
"release:prepare": "bun scripts/build-release.ts --latest",
"release:build": "bun scripts/build-release.ts",
"release:pack": "bun scripts/pack-release.ts",
"prepack": "bun scripts/check-package.ts --prepack"
},
"engines": {
"node": ">=22.19.0"
},
"packageManager": "bun@1.4.1",
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"@earendil-works/pi-tui": "^0.85.1",
"playwright-core": "1.59.1"
},
"devDependencies": {
"@xterm/headless": "6.0.0",
"beautiful-mermaid": "^1.1.3",
"bun-types": "1.4.1",
"cli-highlight": "^2.1.11",
"diff": "^9.0.0",
"just-bash": "^3.4.2",
"mountx": "^0.0.2",
"msw": "^2.15.0",
"pkg-pr-new": "0.0.88",
"tsdown": "^0.22.7",
"typescript": "^7.0.2",
"yaml": "^2.8.1"
}
}