@kb-labs/cli-commands 1.0.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 +253 -0
- package/dist/index.d.ts +292 -0
- package/dist/index.js +5684 -0
- package/dist/index.js.map +1 -0
- package/package.json +82 -0
package/package.json
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@kb-labs/cli-commands",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Command implementations for KB Labs CLI",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"default": "./dist/index.js"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"dist",
|
|
16
|
+
"README.md",
|
|
17
|
+
"LICENSE"
|
|
18
|
+
],
|
|
19
|
+
"sideEffects": false,
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@kb-labs/core-platform": "link:../../../kb-labs-core/packages/core-platform",
|
|
22
|
+
"@kb-labs/core-ipc": "link:../../../kb-labs-core/packages/core-ipc",
|
|
23
|
+
"@kb-labs/core-resource-broker": "link:../../../kb-labs-core/packages/core-resource-broker",
|
|
24
|
+
"@kb-labs/core-runtime": "link:../../../kb-labs-core/packages/core-runtime",
|
|
25
|
+
"@kb-labs/core-state-broker": "link:../../../kb-labs-core/packages/core-state-broker",
|
|
26
|
+
"@kb-labs/core-sys": "link:../../../kb-labs-core/packages/core-sys",
|
|
27
|
+
"@kb-labs/plugin-contracts": "link:../../../kb-labs-plugin/packages/plugin-contracts",
|
|
28
|
+
"@kb-labs/plugin-execution": "link:../../../kb-labs-plugin/packages/plugin-execution",
|
|
29
|
+
"@kb-labs/plugin-runtime": "link:../../../kb-labs-plugin/packages/plugin-runtime",
|
|
30
|
+
"@kb-labs/setup-engine-core": "link:../../../kb-labs-setup-engine/packages/setup-engine-core",
|
|
31
|
+
"@kb-labs/setup-engine-operations": "link:../../../kb-labs-setup-engine/packages/setup-engine-operations",
|
|
32
|
+
"@kb-labs/shared-cli-ui": "link:../../../kb-labs-shared/packages/shared-cli-ui",
|
|
33
|
+
"@kb-labs/shared-command-kit": "link:../../../kb-labs-shared/packages/shared-command-kit",
|
|
34
|
+
"@kb-labs/workflow-artifacts": "link:../../../kb-labs-workflow/packages/workflow-artifacts",
|
|
35
|
+
"@kb-labs/workflow-constants": "link:../../../kb-labs-workflow/packages/workflow-constants",
|
|
36
|
+
"@kb-labs/workflow-contracts": "link:../../../kb-labs-workflow/packages/workflow-contracts",
|
|
37
|
+
"@kb-labs/workflow-engine": "link:../../../kb-labs-workflow/packages/workflow-engine",
|
|
38
|
+
"@kb-labs/workflow-runtime": "link:../../../kb-labs-workflow/packages/workflow-runtime",
|
|
39
|
+
"ajv": "^8.17.1",
|
|
40
|
+
"glob": "^11.0.0",
|
|
41
|
+
"yaml": "^2.8.0",
|
|
42
|
+
"zod": "^3.23.8",
|
|
43
|
+
"minimatch": "^10.0.1",
|
|
44
|
+
"semver": "^7.6.3",
|
|
45
|
+
"pino": "^9.0.0",
|
|
46
|
+
"execa": "^8.0.0",
|
|
47
|
+
"chokidar": "^4.0.0",
|
|
48
|
+
"colorette": "^2.0.20",
|
|
49
|
+
"fast-glob": "^3.3.2",
|
|
50
|
+
"pathe": "^1.1.2",
|
|
51
|
+
"@kb-labs/cli-api": "1.0.0",
|
|
52
|
+
"@kb-labs/cli-contracts": "1.0.0",
|
|
53
|
+
"@kb-labs/cli-core": "1.0.0"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@kb-labs/devkit": "link:../../../kb-labs-devkit",
|
|
57
|
+
"@types/node": "^24.3.3",
|
|
58
|
+
"@types/picomatch": "^4",
|
|
59
|
+
"rimraf": "^6.0.1",
|
|
60
|
+
"tsup": "^8.5.0",
|
|
61
|
+
"vitest": "^3.2.4",
|
|
62
|
+
"typescript": "^5.6.3"
|
|
63
|
+
},
|
|
64
|
+
"module": "./dist/index.js",
|
|
65
|
+
"engines": {
|
|
66
|
+
"node": ">=20.0.0",
|
|
67
|
+
"pnpm": ">=9.0.0"
|
|
68
|
+
},
|
|
69
|
+
"publishConfig": {
|
|
70
|
+
"access": "public"
|
|
71
|
+
},
|
|
72
|
+
"scripts": {
|
|
73
|
+
"clean": "rimraf dist",
|
|
74
|
+
"build": "tsup --config tsup.config.ts",
|
|
75
|
+
"dev": "tsup --config tsup.config.ts --watch",
|
|
76
|
+
"lint": "eslint src",
|
|
77
|
+
"lint:fix": "eslint src --fix",
|
|
78
|
+
"type-check": "tsc --noEmit -p tsconfig.build.json",
|
|
79
|
+
"test": "vitest run --passWithNoTests",
|
|
80
|
+
"test:watch": "vitest"
|
|
81
|
+
}
|
|
82
|
+
}
|