agentinit 0.1.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/README.md +231 -0
- package/dist/index.js +14440 -0
- package/package.json +51 -0
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agentinit",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A CLI tool for managing and configuring AI coding agents",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"agentinit": "dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "bun build src/index.ts --outdir dist --target node",
|
|
12
|
+
"dev": "bun run src/index.ts",
|
|
13
|
+
"test": "bun test",
|
|
14
|
+
"lint": "tsc --noEmit",
|
|
15
|
+
"clean": "rm -rf dist",
|
|
16
|
+
"pack": "npm pack --dry-run",
|
|
17
|
+
"prepublishOnly": "npm run build && npm run lint"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"ai",
|
|
21
|
+
"agents",
|
|
22
|
+
"cli",
|
|
23
|
+
"configuration",
|
|
24
|
+
"automation"
|
|
25
|
+
],
|
|
26
|
+
"author": "AgentInit Team",
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"engines": {
|
|
29
|
+
"node": ">=18.0.0"
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist/",
|
|
33
|
+
"LICENSE",
|
|
34
|
+
"README.md"
|
|
35
|
+
],
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"commander": "^12.1.0",
|
|
38
|
+
"ora": "^8.1.0",
|
|
39
|
+
"kleur": "^4.1.5",
|
|
40
|
+
"prompts": "^2.4.2",
|
|
41
|
+
"js-yaml": "^4.1.0",
|
|
42
|
+
"gray-matter": "^4.0.3"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@types/node": "^22.8.0",
|
|
46
|
+
"@types/js-yaml": "^4.0.9",
|
|
47
|
+
"@types/prompts": "^2.4.9",
|
|
48
|
+
"typescript": "^5.6.3"
|
|
49
|
+
},
|
|
50
|
+
"packageManager": "bun@1.1.0"
|
|
51
|
+
}
|