@aikdna/kdna-cli 0.22.0 → 0.22.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/package.json +10 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aikdna/kdna-cli",
|
|
3
|
-
"version": "0.22.
|
|
3
|
+
"version": "0.22.1",
|
|
4
4
|
"description": "KDNA CLI — runtime control plane for verifying, installing, loading, comparing, publishing, and auditing existing .kdna assets.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"bin": {
|
|
@@ -23,19 +23,23 @@
|
|
|
23
23
|
"lint": "eslint src/ validators/ tests/",
|
|
24
24
|
"format": "prettier --write .",
|
|
25
25
|
"format:check": "prettier --check .",
|
|
26
|
-
"test": "npm run test:
|
|
26
|
+
"test": "npm run test:v1 && npm run test:smoke",
|
|
27
27
|
"test:integration": "node --test tests/integration.test.js",
|
|
28
|
-
"test:all": "npm run test:
|
|
28
|
+
"test:all": "npm run test:v1 && npm run test:smoke && npm run test:legacy",
|
|
29
29
|
"test:core-smoke": "node scripts/pretest-smoke.js",
|
|
30
|
-
"release:preflight": "node scripts/release-preflight.js"
|
|
30
|
+
"release:preflight": "node scripts/release-preflight.js",
|
|
31
|
+
"test:v1": "node --test tests/v1-global-cli.test.js",
|
|
32
|
+
"test:smoke": "npm run test:core-smoke",
|
|
33
|
+
"test:legacy": "node --test tests/v07-commands.test.js tests/v012-commands.test.js tests/asset-store.test.js"
|
|
31
34
|
},
|
|
32
35
|
"keywords": [
|
|
33
36
|
"kdna",
|
|
34
37
|
"kdna-cli",
|
|
35
38
|
"ai-agent",
|
|
36
39
|
"domain-judgment",
|
|
37
|
-
"
|
|
38
|
-
"
|
|
40
|
+
"cli",
|
|
41
|
+
"judgment-asset",
|
|
42
|
+
"official-toolchain"
|
|
39
43
|
],
|
|
40
44
|
"license": "Apache-2.0",
|
|
41
45
|
"repository": {
|