@nepopsx/cli 0.0.7 → 0.0.8
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/dist/index.js +1 -1
- package/package.json +11 -11
package/dist/index.js
CHANGED
|
@@ -13,7 +13,7 @@ const program = new Command();
|
|
|
13
13
|
program
|
|
14
14
|
.name('nepopsx')
|
|
15
15
|
.description('NEPOPSX — AI Agent Platform for Engineering Teams')
|
|
16
|
-
.version('0.0.
|
|
16
|
+
.version('0.0.8');
|
|
17
17
|
program
|
|
18
18
|
.command('init')
|
|
19
19
|
.description('Initialize a new NEPOPSX workspace (interactive setup)')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nepopsx/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"description": "NEPOPSX CLI — generate AI agent workspaces from configuration",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"type": "module",
|
|
@@ -12,12 +12,20 @@
|
|
|
12
12
|
"publishConfig": {
|
|
13
13
|
"access": "public"
|
|
14
14
|
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "tsc",
|
|
17
|
+
"clean": "rm -rf dist",
|
|
18
|
+
"dev": "tsc --watch",
|
|
19
|
+
"lint": "tsc --noEmit",
|
|
20
|
+
"test": "node --test dist/**/*.test.js"
|
|
21
|
+
},
|
|
15
22
|
"files": [
|
|
16
23
|
"dist",
|
|
17
24
|
"bin"
|
|
18
25
|
],
|
|
19
26
|
"dependencies": {
|
|
20
27
|
"@inquirer/prompts": "^8.4.1",
|
|
28
|
+
"@nepopsx/core": "workspace:*",
|
|
21
29
|
"archiver": "^7.0.1",
|
|
22
30
|
"chalk": "^5.4.1",
|
|
23
31
|
"commander": "^13.1.0",
|
|
@@ -26,8 +34,7 @@
|
|
|
26
34
|
"ignore": "^7.0.0",
|
|
27
35
|
"inquirer": "^12.3.2",
|
|
28
36
|
"ora": "^8.2.0",
|
|
29
|
-
"yaml": "^2.7.0"
|
|
30
|
-
"@nepopsx/core": "0.0.6"
|
|
37
|
+
"yaml": "^2.7.0"
|
|
31
38
|
},
|
|
32
39
|
"devDependencies": {
|
|
33
40
|
"@types/archiver": "^7.0.0",
|
|
@@ -36,12 +43,5 @@
|
|
|
36
43
|
},
|
|
37
44
|
"engines": {
|
|
38
45
|
"node": ">=20"
|
|
39
|
-
},
|
|
40
|
-
"scripts": {
|
|
41
|
-
"build": "tsc",
|
|
42
|
-
"clean": "rm -rf dist",
|
|
43
|
-
"dev": "tsc --watch",
|
|
44
|
-
"lint": "tsc --noEmit",
|
|
45
|
-
"test": "node --test dist/**/*.test.js"
|
|
46
46
|
}
|
|
47
|
-
}
|
|
47
|
+
}
|