-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.35 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
{
"name": "my-agent",
"version": "0.3.0",
"description": "Local-first multi-model terminal coding agent",
"homepage": "https://zimoos.github.io/my-agent/",
"type": "module",
"bin": {
"ma": "./bin/ma"
},
"files": [
"dist",
"bin",
"scripts/fix-node-pty.mjs",
"README.md",
"README.zh-CN.md",
"LICENSE"
],
"scripts": {
"prepare": "npm run build",
"postinstall": "node scripts/fix-node-pty.mjs",
"start": "tsx src/cli/index.tsx",
"build": "tsc && chmod +x dist/src/cli/index.js bin/ma scripts/package-portable.mjs",
"package:portable": "npm run build && node scripts/package-portable.mjs --out release",
"sync:agora-release": "node scripts/sync-agora-release.mjs",
"release:check": "npm test && npm run package:portable",
"dev": "tsx watch src/cli/index.tsx",
"test": "tsx --test test/*.test.ts",
"e2e": "bash test/e2e.sh",
"e2e:real": "tsx --test test/e2e-real.ts test/e2e/zimoos.test.ts",
"e2e:zimoos": "tsx --test test/e2e/zimoos.test.ts",
"init": "tsx src/init.ts",
"visual": "playwright test --config test/visual/playwright.config.ts",
"visual:server": "tsx test/visual/server.ts",
"benchmark": "tsx test/benchmark/runner/index.ts",
"benchmark:L0": "tsx test/benchmark/runner/index.ts --level L0",
"benchmark:dry": "tsx test/benchmark/runner/index.ts --dry-run"
},
"dependencies": {
"@agentclientprotocol/sdk": "0.20.0",
"@inkjs/ui": "^2.0.0",
"@toon-format/toon": "^2.1.0",
"cli-highlight": "^2.1.11",
"cli-truncate": "^5.2.0",
"commander": "^12.1.0",
"figures": "^6.1.0",
"ink": "^6.8.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"js-yaml": "^4.1.1",
"jsdiff": "^1.1.1",
"log-update": "^7.2.0",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"openai": "^4.76.0",
"p-retry": "^8.0.0",
"parse-diff": "^0.12.0",
"picocolors": "^1.1.1",
"react": "^19.2.5",
"string-width": "^8.2.1"
},
"optionalDependencies": {
"@zimoos/agora": "0.2.0"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/js-yaml": "^4.0.9",
"@types/marked": "^5.0.2",
"@types/node": "^22.10.2",
"@types/react": "^19.2.14",
"@types/ws": "^8.18.1",
"node-pty": "^1.1.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"ws": "^8.20.0"
},
"license": "MIT"
}