-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.71 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.71 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
{
"name": "autohand-cli",
"version": "0.8.2",
"license": "Apache-2.0",
"description": "Autohand Code CLI is a fast, terminal-native AI coding agent for planning, editing, testing, and automating software work.",
"repository": {
"type": "git",
"url": "https://github.com/autohandai/code-cli.git"
},
"homepage": "https://autohand.ai/cli/",
"bugs": {
"url": "https://github.com/autohandai/code-cli/issues"
},
"type": "module",
"bin": {
"autohand": "dist/index.js"
},
"main": "dist/index.js",
"files": [
"dist",
"assets"
],
"scripts": {
"go": "./install-local.sh && echo \"COMPLETED\"",
"build": "tsup",
"dev": "env -i PATH=\"/Users/igorcosta/.bun/bin:/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin\" HOME=\"$HOME\" bun src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"proof": "eslint . && tsc --noEmit && node --max-old-space-size=8192 ./node_modules/vitest/vitest.mjs run",
"test": "node --max-old-space-size=8192 ./node_modules/vitest/vitest.mjs run",
"test:ci": "node --max-old-space-size=8192 ./node_modules/vitest/vitest.mjs run --pool=threads --exclude 'tests/tuistory/**/*.tuistory.test.ts'",
"test:tuistory": "node --max-old-space-size=4096 ./node_modules/vitest/vitest.mjs run --config vitest.tuistory.config.ts",
"proof:build-tuistory": "tsup && node --max-old-space-size=4096 ./node_modules/vitest/vitest.mjs run --config vitest.tuistory.config.ts",
"start": "node dist/index.js",
"compile:macos-arm64": "bun build ./src/index.ts --compile --target=bun-darwin-arm64 --outfile ./binaries/autohand-macos-arm64",
"compile:macos-x64": "bun build ./src/index.ts --compile --target=bun-darwin-x64 --outfile ./binaries/autohand-macos-x64",
"compile:linux-x64": "bun build ./src/index.ts --compile --target=bun-linux-x64 --outfile ./binaries/autohand-linux-x64",
"compile:linux-arm64": "bun build ./src/index.ts --compile --target=bun-linux-arm64 --outfile ./binaries/autohand-linux-arm64",
"compile:windows-x64": "bun build ./src/index.ts --compile --target=bun-windows-x64 --outfile ./binaries/autohand-windows-x64.exe",
"compile:all": "bun run compile:macos-arm64 && bun run compile:macos-x64 && bun run compile:linux-x64 && bun run compile:linux-arm64 && bun run compile:windows-x64",
"link": "bun link",
"translate": "tsx scripts/generate-translations.ts"
},
"keywords": [
"cli",
"llm",
"agent",
"agentic",
"autohand"
],
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@agentclientprotocol/sdk": "0.19.1",
"@ff-labs/fff-bun": "0.6.4",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"diff": "^9.0.0",
"dotenv": "^17.4.2",
"fs-extra": "^11.3.4",
"ignore": "^7.0.5",
"ink": "^7.0.1",
"ink-spinner": "^5.0.0",
"minimatch": "^10.2.5",
"node-notifier": "^10.0.1",
"node-pty": "^1.1.0",
"open": "^11.0.0",
"ora": "^9.4.0",
"react": "^19.2.5",
"sharp": "^0.34.5",
"string-width": "^8.2.0",
"terminal-link": "^5.0.0",
"yaml": "^2.8.3",
"zod": "^4.3.6"
},
"trustedDependencies": [
"node-pty",
"bun"
],
"devDependencies": {
"@types/diff": "^8.0.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.6.0",
"@types/node-notifier": "^8.0.5",
"@types/react": "^19.2.5",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"eslint": "^10.2.1",
"ink-testing-library": "^4.0.0",
"memfs": "^4.57.2",
"node-gyp": "^12.3.0",
"strip-ansi": "^7.2.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"tuistory": "0.4.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"overrides": {
"ansi-styles": "^6.2.3"
}
}