-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.52 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
{
"name": "zcode-app-cli",
"version": "3.7.7-14",
"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",
"config.example.json",
"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",
"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-pressure.ts && bun scripts/smoke-tui-widths.ts",
"test": "bun test",
"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.3.12",
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"@earendil-works/pi-tui": "^0.80.6",
"playwright-core": "1.59.1"
},
"devDependencies": {
"beautiful-mermaid": "^1.1.3",
"bun-types": "^1.3.14",
"cli-highlight": "^2.1.11",
"diff": "^9.0.0",
"tsdown": "^0.22.7",
"typescript": "^7.0.2",
"yaml": "^2.8.1"
}
}