@gustavobrunodev/ai-tools 1.0.1
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 +26 -0
- package/README.md +257 -0
- package/assets/chiptune.mp3 +0 -0
- package/index.js +12 -0
- package/index.js.map +7 -0
- package/package.json +60 -0
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@gustavobrunodev/ai-tools",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "CLI to install and manage AI tools (skills, MCPs, agents) for AI coding agents",
|
|
5
|
+
"author": "gustavobrunodev",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/gustavobrunodev/ai-tools.git"
|
|
10
|
+
},
|
|
11
|
+
"type": "module",
|
|
12
|
+
"bin": {
|
|
13
|
+
"ai-tools": "./index.js"
|
|
14
|
+
},
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=22"
|
|
17
|
+
},
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"access": "public"
|
|
20
|
+
},
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "nx build",
|
|
23
|
+
"dev": "tsx src/index.ts",
|
|
24
|
+
"postbuild": "chmod +x dist/index.js",
|
|
25
|
+
"test": "cross-env NODE_OPTIONS='--experimental-vm-modules' jest",
|
|
26
|
+
"typecheck": "tsc --noEmit"
|
|
27
|
+
},
|
|
28
|
+
"keywords": [
|
|
29
|
+
"ai",
|
|
30
|
+
"agents",
|
|
31
|
+
"skills",
|
|
32
|
+
"cli"
|
|
33
|
+
],
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"chalk": "^5.6.2",
|
|
36
|
+
"commander": "^14.0.3",
|
|
37
|
+
"ink": "^6.8.0",
|
|
38
|
+
"ink-big-text": "^2.0.0",
|
|
39
|
+
"ink-gradient": "^4.0.0",
|
|
40
|
+
"ink-spinner": "^5.0.0",
|
|
41
|
+
"ink-text-input": "^6.0.0",
|
|
42
|
+
"jotai": "^2.18.0",
|
|
43
|
+
"ky": "^1.14.3",
|
|
44
|
+
"package-json": "^10.0.1",
|
|
45
|
+
"react": "^19.2.4",
|
|
46
|
+
"zod": "^4.3.6"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@jest/globals": "30.2.0",
|
|
50
|
+
"@gustavobrunodev/core": "0.0.1",
|
|
51
|
+
"@testing-library/react": "^16.3.2",
|
|
52
|
+
"@types/figlet": "^1.7.0",
|
|
53
|
+
"@types/node": "^24",
|
|
54
|
+
"@types/react": "^19.2.14",
|
|
55
|
+
"fast-check": "^4.5.3",
|
|
56
|
+
"jest-environment-jsdom": "^30.2.0",
|
|
57
|
+
"tsx": "^4.21.0",
|
|
58
|
+
"typescript": "^5.9.3"
|
|
59
|
+
}
|
|
60
|
+
}
|