-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.21 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
{
"name": "agneto",
"version": "0.6.2",
"description": "AI-powered autonomous coding agent with human-in-the-loop planning",
"type": "module",
"bin": {
"agneto": "./dist/cli.js"
},
"files": [
"dist",
"bin",
"package.json",
"README.md"
],
"keywords": [
"ai",
"agent",
"development",
"coding",
"automation",
"claude",
"llm",
"agile",
"autonomous"
],
"author": "Dražen Urch",
"license": "Source Available",
"repository": {
"type": "git",
"url": "https://github.com/durch/agneto.git"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc -p . && npm run copy-prompts && npm run add-shebang",
"copy-prompts": "mkdir -p dist/prompts && cp -r src/prompts/*.md dist/prompts/",
"add-shebang": "echo '#!/usr/bin/env node' | cat - dist/cli.js > temp && mv temp dist/cli.js && chmod +x dist/cli.js",
"prepublishOnly": "npm run build",
"start": "tsx src/cli.ts",
"dashboard": "npx tsx dashboard/server.ts",
"new-task": "bash scripts/new-task.sh",
"cleanup-task": "bash scripts/cleanup-task.sh",
"merge-task": "bash scripts/merge-worktree.sh",
"version:major": "bash scripts/version-major.sh",
"version:minor": "bash scripts/version-minor.sh",
"version:patch": "bash scripts/version-patch.sh",
"test": "vitest",
"test:ui": "vitest --ui",
"test:watch": "vitest --watch",
"test:git": "vitest test/git",
"test:run": "vitest run"
},
"dependencies": {
"@inquirer/prompts": "=7.8.6",
"ajv": "=8.17.1",
"boxen": "=8.0.1",
"chalk": "=5.6.2",
"cli-highlight": "=2.1.11",
"clipboardy": "^5.0.0",
"commander": "=14.0.1",
"cors": "=2.8.5",
"express": "=5.1.0",
"ink": "=6.3.1",
"ink-select-input": "^6.2.0",
"ink-text-input": "^6.0.0",
"react": "=19.1.1",
"simple-git": "=3.28.0",
"strip-ansi": "=7.1.2",
"wrap-ansi": "=9.0.2",
"ws": "=8.18.3"
},
"devDependencies": {
"@types/cors": "=2.8.19",
"@types/express": "=5.0.3",
"@types/node": "=24.5.2",
"@types/react": "=19.1.15",
"@types/ws": "=8.18.1",
"@vitest/ui": "=3.2.4",
"tsx": "=4.20.6",
"typescript": "=5.9.2",
"vitest": "=3.2.4"
}
}