@foresthubai/workflow-cli 0.3.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/LICENSE +661 -0
- package/NOTICE +23 -0
- package/README.md +121 -0
- package/dist/assets/index-CiLOHdeR.css +1 -0
- package/dist/assets/index-DA5QQf8M.js +75 -0
- package/dist/favicon.png +0 -0
- package/dist/index.html +14 -0
- package/dist-cli/cli.js +18929 -0
- package/dist-cli/workflow.yaml +909 -0
- package/package.json +63 -0
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@foresthubai/workflow-cli",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "fh-workflow CLI — author, validate, and visually edit ForestHub workflow JSON. Bundles the visual builder; no other install required.",
|
|
6
|
+
"license": "AGPL-3.0-only",
|
|
7
|
+
"engines": {
|
|
8
|
+
"node": ">=20"
|
|
9
|
+
},
|
|
10
|
+
"bin": {
|
|
11
|
+
"fh-workflow": "./dist-cli/cli.js"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist",
|
|
15
|
+
"dist-cli",
|
|
16
|
+
"README.md",
|
|
17
|
+
"LICENSE",
|
|
18
|
+
"NOTICE"
|
|
19
|
+
],
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"registry": "https://registry.npmjs.org",
|
|
22
|
+
"access": "public"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"dev": "vite",
|
|
26
|
+
"build": "vite build",
|
|
27
|
+
"build:cli": "node ./scripts/build-cli.mjs",
|
|
28
|
+
"build:all": "npm run build && npm run build:cli",
|
|
29
|
+
"preview": "vite preview",
|
|
30
|
+
"cli": "node ./cli/fh-workflow.mjs",
|
|
31
|
+
"open": "node ./cli/fh-workflow.mjs open",
|
|
32
|
+
"check-schema": "node ./cli/fh-workflow.mjs check-schema",
|
|
33
|
+
"validate": "node ./cli/fh-workflow.mjs validate",
|
|
34
|
+
"test": "vitest run",
|
|
35
|
+
"prepublishOnly": "npm run build:all"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@foresthubai/workflow-builder": "*",
|
|
39
|
+
"@foresthubai/workflow-core": "*",
|
|
40
|
+
"@radix-ui/react-dropdown-menu": "^2.1.1",
|
|
41
|
+
"@types/js-yaml": "^4.0.9",
|
|
42
|
+
"@types/node": "^20.0.0",
|
|
43
|
+
"@types/react": "^18.3.0",
|
|
44
|
+
"@types/react-dom": "^18.3.0",
|
|
45
|
+
"@vitejs/plugin-react": "^4.3.0",
|
|
46
|
+
"ajv": "^8.20.0",
|
|
47
|
+
"ajv-formats": "^3.0.1",
|
|
48
|
+
"autoprefixer": "^10.4.0",
|
|
49
|
+
"esbuild": "^0.24.0",
|
|
50
|
+
"i18next": "^25.3.2",
|
|
51
|
+
"js-yaml": "^4.2.0",
|
|
52
|
+
"lucide-react": "^0.462.0",
|
|
53
|
+
"postcss": "^8.4.0",
|
|
54
|
+
"react": "^18.3.0",
|
|
55
|
+
"react-dom": "^18.3.0",
|
|
56
|
+
"react-i18next": "^15.6.1",
|
|
57
|
+
"tailwindcss": "^3.4.0",
|
|
58
|
+
"tailwindcss-animate": "^1.0.7",
|
|
59
|
+
"tsx": "^4.19.0",
|
|
60
|
+
"typescript": "^5.6.0",
|
|
61
|
+
"vite": "^7.3.3"
|
|
62
|
+
}
|
|
63
|
+
}
|