airc-cli 0.1.0 → 0.1.2
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/README.md +34 -652
- package/dist/index.js +200 -263
- package/package.json +28 -20
package/package.json
CHANGED
|
@@ -1,40 +1,48 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "airc-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "A CLI tool to install AI tool configuration files",
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
"keywords": [
|
|
6
|
+
"ai",
|
|
7
|
+
"airc",
|
|
8
|
+
"cli",
|
|
9
|
+
"config",
|
|
10
|
+
"tool"
|
|
11
|
+
],
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"author": "teobler",
|
|
8
14
|
"bin": {
|
|
9
15
|
"airc": "./dist/index.js"
|
|
10
16
|
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"type": "module",
|
|
21
|
+
"main": "dist/index.js",
|
|
11
22
|
"scripts": {
|
|
12
23
|
"build": "bun build src/cli.ts --minify --outfile dist/index.js --target node",
|
|
13
24
|
"airc": "bun src/cli.ts",
|
|
14
25
|
"tsc": "tsc --noEmit",
|
|
15
|
-
"test": "bun test",
|
|
26
|
+
"test": "bun test --only-failures",
|
|
16
27
|
"test:watch": "bun test --watch",
|
|
17
|
-
"lint": "oxlint"
|
|
28
|
+
"lint": "oxlint",
|
|
29
|
+
"fmt": "oxfmt",
|
|
30
|
+
"upgrade": "bun update -i",
|
|
31
|
+
"clean": "shx rm -rf coverage dist",
|
|
32
|
+
"bump": "bunx bumpp",
|
|
33
|
+
"release": "bun run upgrade && bun run clean && bun run build && bun run tsc && bun run test && bun run bump"
|
|
18
34
|
},
|
|
19
|
-
"keywords": [
|
|
20
|
-
"cli",
|
|
21
|
-
"ai",
|
|
22
|
-
"config",
|
|
23
|
-
"airc",
|
|
24
|
-
"tool"
|
|
25
|
-
],
|
|
26
|
-
"author": "teobler",
|
|
27
|
-
"license": "MIT",
|
|
28
35
|
"dependencies": {
|
|
29
|
-
"chalk": "^
|
|
30
|
-
"commander": "^
|
|
31
|
-
"
|
|
36
|
+
"chalk": "^5.6.2",
|
|
37
|
+
"commander": "^14.0.2",
|
|
38
|
+
"inquirer": "^13.2.1"
|
|
32
39
|
},
|
|
33
40
|
"devDependencies": {
|
|
34
|
-
"@types/
|
|
35
|
-
"@types/node": "^20.11.0",
|
|
41
|
+
"@types/inquirer": "^9.0.9",
|
|
36
42
|
"bun-types": "^1.3.6",
|
|
43
|
+
"oxfmt": "^0.26.0",
|
|
37
44
|
"oxlint": "^1.39.0",
|
|
45
|
+
"shx": "^0.4.0",
|
|
38
46
|
"typescript": "^5.3.3"
|
|
39
47
|
}
|
|
40
48
|
}
|