sy-lowcode-workspace-tools 0.1.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 ADDED
@@ -0,0 +1,9 @@
1
+ # sy-lowcode-workspace-tools
2
+
3
+ Shared CLI for AI generated lowcode app workspaces.
4
+
5
+ ```bash
6
+ lowcode-workspace build-pages --page customer-info-data
7
+ lowcode-workspace update --channel latest --commit --push
8
+ lowcode-workspace migrate --commit --push
9
+ ```
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env node
2
+ import { main } from "../src/cli.mjs";
3
+
4
+ main(process.argv.slice(2)).catch((error) => {
5
+ console.error(error instanceof Error ? error.message : String(error));
6
+ process.exit(1);
7
+ });
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "sy-lowcode-workspace-tools",
3
+ "version": "0.1.0",
4
+ "description": "CLI tools for sy lowcode app workspaces",
5
+ "type": "module",
6
+ "bin": {
7
+ "lowcode-workspace": "./bin/lowcode-workspace.mjs"
8
+ },
9
+ "exports": {
10
+ ".": "./src/cli.mjs"
11
+ },
12
+ "files": [
13
+ "bin",
14
+ "src",
15
+ "scripts",
16
+ "package.json",
17
+ "README.md"
18
+ ],
19
+ "scripts": {
20
+ "prepublishOnly": "node ./bin/lowcode-workspace.mjs --help"
21
+ },
22
+ "dependencies": {
23
+ "@vitejs/plugin-react": "^4.3.0",
24
+ "ali-oss": "^6.23.0",
25
+ "autoprefixer": "^10.4.21",
26
+ "dotenv": "^16.6.1",
27
+ "glob": "^10.4.5",
28
+ "minimist": "^1.2.8",
29
+ "p-limit": "^5.0.0",
30
+ "tailwindcss": "^3.4.17",
31
+ "tsx": "^4.20.0",
32
+ "vite": "^6.0.0"
33
+ }
34
+ }