-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.74 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.74 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
{
"name": "@ariacode/cli",
"version": "0.2.3",
"description": "A predictable coding agent for Next.js, Nest.js, Prisma and Node.js projects.",
"homepage": "https://www.ariacode.run",
"repository": {
"type": "git",
"url": "git+https://github.com/ariacodeai/ariacode.git"
},
"bugs": {
"url": "https://github.com/ariacodeai/ariacode/issues"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"bin": {
"aria": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"ai",
"agent",
"coding-agent",
"typescript",
"nodejs",
"nextjs",
"nestjs",
"prisma",
"cli"
],
"scripts": {
"dev": "tsx src/cli.ts",
"build": "rm -rf dist && tsc && cp -r src/prompts dist/prompts",
"start": "node dist/cli.js",
"check": "tsc --noEmit",
"format": "prettier --write .",
"test": "vitest --run",
"test:watch": "vitest",
"prepublishOnly": "npm run check && npm run test && npm run build"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.82.0",
"@mrleebo/prisma-ast": "^0.15.0",
"better-sqlite3": "^12.8.0",
"cli-table3": "^0.6.5",
"diff": "^8.0.4",
"ignore": "^7.0.5",
"picocolors": "^1.1.1",
"prompts": "^2.4.2",
"semver": "^7.6.0",
"smol-toml": "^1.3.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/diff": "^6.0.0",
"@types/node": "^24.3.0",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.0",
"@vitest/coverage-v8": "^4.1.2",
"fast-check": "^3.22.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.2",
"vitest": "^4.1.2"
}
}