@the-aico/cli 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +3331 -0
- package/dist/index.js.map +1 -0
- package/package.json +76 -0
package/package.json
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@the-aico/cli",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "aico CLI - AI employee management tool",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"aico": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"main": "./dist/index.js",
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"access": "public"
|
|
16
|
+
},
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/yellinzero/aico.git",
|
|
20
|
+
"directory": "packages/cli"
|
|
21
|
+
},
|
|
22
|
+
"homepage": "https://the-aico.com",
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/yellinzero/aico/issues"
|
|
25
|
+
},
|
|
26
|
+
"author": {
|
|
27
|
+
"name": "yellin",
|
|
28
|
+
"url": "https://the-aico.com"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"commander": "^14.0.0",
|
|
32
|
+
"diff": "^7.0.0",
|
|
33
|
+
"fast-glob": "^3.3.3",
|
|
34
|
+
"fs-extra": "^11.3.0",
|
|
35
|
+
"https-proxy-agent": "^7.0.0",
|
|
36
|
+
"js-yaml": "^4.1.1",
|
|
37
|
+
"kleur": "^4.1.5",
|
|
38
|
+
"node-fetch": "^3.3.2",
|
|
39
|
+
"ora": "^8.2.0",
|
|
40
|
+
"prompts": "^2.4.2",
|
|
41
|
+
"zod": "^3.24.1"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@types/diff": "^6.0.0",
|
|
45
|
+
"@types/fs-extra": "^11.0.4",
|
|
46
|
+
"@types/js-yaml": "^4.0.9",
|
|
47
|
+
"@types/node": "^22.19.5",
|
|
48
|
+
"@types/prompts": "^2.4.9",
|
|
49
|
+
"tsup": "^8.5.0",
|
|
50
|
+
"typescript": "^5.7.2",
|
|
51
|
+
"vitest": "^3.0.0"
|
|
52
|
+
},
|
|
53
|
+
"engines": {
|
|
54
|
+
"node": ">=18.17.0"
|
|
55
|
+
},
|
|
56
|
+
"keywords": [
|
|
57
|
+
"aico",
|
|
58
|
+
"ai",
|
|
59
|
+
"employee",
|
|
60
|
+
"cli",
|
|
61
|
+
"claude-code",
|
|
62
|
+
"codex"
|
|
63
|
+
],
|
|
64
|
+
"license": "Apache-2.0",
|
|
65
|
+
"scripts": {
|
|
66
|
+
"dev": "tsup --watch",
|
|
67
|
+
"build": "tsup",
|
|
68
|
+
"build:registry": "node dist/index.js build",
|
|
69
|
+
"test": "vitest run",
|
|
70
|
+
"test:watch": "vitest",
|
|
71
|
+
"typecheck": "tsc --noEmit",
|
|
72
|
+
"pub:beta": "pnpm build && pnpm publish --no-git-checks --access public --tag beta",
|
|
73
|
+
"pub:next": "pnpm build && pnpm publish --no-git-checks --access public --tag next",
|
|
74
|
+
"pub:release": "pnpm build && pnpm publish --access public"
|
|
75
|
+
}
|
|
76
|
+
}
|