-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.71 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.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
{
"name": "@aiorg/cli",
"version": "1.6.4",
"description": "Install and manage autonomous AI teams for Claude Code. Each team is a specialist — marketing, dev, QA, product, support — that executes, not just advises.",
"homepage": "https://aiorg.dev",
"type": "module",
"publishConfig": {
"access": "public"
},
"bin": {
"aiorg": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:contract": "RUN_INTEGRATION=true vitest run src/__tests__/api-contract.test.ts",
"prepublishOnly": "pnpm build && pnpm test:contract"
},
"keywords": [
"aiorg",
"cli",
"claude",
"claude-code",
"ai-teams",
"autonomous-ai",
"saas",
"ai",
"founder-tools",
"boilerplate",
"developer-tools"
],
"author": {
"name": "AI Org",
"url": "https://aiorg.dev"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/aiorgdev/cli.git"
},
"bugs": {
"url": "https://github.com/aiorgdev/cli/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"cac": "^6.7.14",
"@clack/prompts": "^0.8.2",
"picocolors": "^1.1.1",
"ora": "^8.1.1",
"extract-zip": "^2.0.1",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"lodash-es": "^4.17.21",
"minimatch": "^10.0.1",
"zod": "^3.24.1",
"semver": "^7.6.3"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.5",
"@types/semver": "^7.5.8",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}