@bizhou/cli 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.
Files changed (3) hide show
  1. package/LICENSE +201 -0
  2. package/dist/index.js +3839 -0
  3. package/package.json +23 -0
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "@bizhou/cli",
3
+ "version": "1.0.0",
4
+ "description": "敝帚 CLI(bz):核心库的命令行包装,可测、可脚本化、可作为 agent Skill。",
5
+ "type": "module",
6
+ "bin": {
7
+ "bz": "./dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "devDependencies": {
13
+ "@bizhou/core": "1.0.0"
14
+ },
15
+ "license": "Apache-2.0",
16
+ "engines": {
17
+ "node": ">=20"
18
+ },
19
+ "scripts": {
20
+ "build": "tsup",
21
+ "test": "bun test"
22
+ }
23
+ }