-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 822 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 822 Bytes
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
{
"name": "aai",
"version": "1.0.0",
"description": "Unified Docker installer for personal AI agents (OpenClaw, Hermes, Paperclip) with optional GBrain memory.",
"type": "module",
"bin": {
"aai": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"commander": "^12.1.0",
"execa": "^9.5.1",
"picocolors": "^1.1.1",
"yaml": "^2.6.1"
},
"devDependencies": {
"@types/node": "^20.17.10",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}