@arkveil/cli 1.0.0 → 1.2.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/README.md +49 -0
- package/dist/index.js +987 -24
- package/dist/index.js.map +1 -1
- package/package.json +11 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arkveil/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Command-line interface for the Arkveil Kernel API (navigation, actions, targets, policies, tests, and ABAC operations).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -20,16 +20,6 @@
|
|
|
20
20
|
"engines": {
|
|
21
21
|
"node": ">=20"
|
|
22
22
|
},
|
|
23
|
-
"scripts": {
|
|
24
|
-
"dev": "tsx src/index.ts",
|
|
25
|
-
"build": "tsup",
|
|
26
|
-
"gen:api": "openapi-typescript .docs/api.yaml --output src/lib/generated/schema.d.ts --empty-objects-unknown --root-types",
|
|
27
|
-
"typecheck": "tsc --noEmit",
|
|
28
|
-
"lint": "eslint .",
|
|
29
|
-
"test": "vitest run",
|
|
30
|
-
"test:watch": "vitest",
|
|
31
|
-
"prepublishOnly": "npm run typecheck && npm run test && npm run build"
|
|
32
|
-
},
|
|
33
23
|
"keywords": [
|
|
34
24
|
"arkveil",
|
|
35
25
|
"abac",
|
|
@@ -48,7 +38,6 @@
|
|
|
48
38
|
"bugs": {
|
|
49
39
|
"url": "https://github.com/arkveil-abac/arkveil-cli/issues"
|
|
50
40
|
},
|
|
51
|
-
"packageManager": "pnpm@10.13.1",
|
|
52
41
|
"optionalDependencies": {
|
|
53
42
|
"keytar": "^7.9.0"
|
|
54
43
|
},
|
|
@@ -69,5 +58,14 @@
|
|
|
69
58
|
"typescript-eslint": "^8.10.0",
|
|
70
59
|
"vitest": "^2.1.0",
|
|
71
60
|
"zod": "^3.23.8"
|
|
61
|
+
},
|
|
62
|
+
"scripts": {
|
|
63
|
+
"dev": "tsx src/index.ts",
|
|
64
|
+
"build": "tsup",
|
|
65
|
+
"gen:api": "openapi-typescript .docs/api.yaml --output src/lib/generated/schema.d.ts --empty-objects-unknown --root-types",
|
|
66
|
+
"typecheck": "tsc --noEmit",
|
|
67
|
+
"lint": "eslint .",
|
|
68
|
+
"test": "vitest run",
|
|
69
|
+
"test:watch": "vitest"
|
|
72
70
|
}
|
|
73
|
-
}
|
|
71
|
+
}
|