@zenuml/core 3.48.0 → 3.48.2
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/dist/cli/zenuml.mjs +13567 -0
- package/dist/cli/zenuml.mjs.map +1 -0
- package/dist/zenuml.esm.mjs +3 -3
- package/dist/zenuml.js +3 -3
- package/package.json +19 -8
- package/src/cli/zenuml.ts +0 -1164
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zenuml/core",
|
|
3
|
-
"version": "3.48.
|
|
3
|
+
"version": "3.48.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -8,8 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"dist/",
|
|
11
|
-
"types/"
|
|
12
|
-
"src/cli/zenuml.ts"
|
|
11
|
+
"types/"
|
|
13
12
|
],
|
|
14
13
|
"scripts": {
|
|
15
14
|
"dev": "vite dev --port 4000 --host 0.0.0.0",
|
|
@@ -17,9 +16,11 @@
|
|
|
17
16
|
"preview": "bun run --bun vite preview --port 4000 --host",
|
|
18
17
|
"build:site": "bun run --bun vite build",
|
|
19
18
|
"build:gh-pages": "bun run --bun vite build --mode gh-pages",
|
|
20
|
-
"build": "bun run --bun vite build -c vite.config.lib.ts",
|
|
21
|
-
"build:
|
|
22
|
-
"build
|
|
19
|
+
"build:lib": "bun run --bun vite build -c vite.config.lib.ts",
|
|
20
|
+
"build:cli": "bun run --bun vite build -c vite.config.cli.ts",
|
|
21
|
+
"build": "bun run build:lib && bun run build:cli",
|
|
22
|
+
"build:release": "RELEASE=1 bun run build:lib && RELEASE=1 bun run build:cli",
|
|
23
|
+
"build:analyze": "RELEASE=1 ANALYZE=1 bun run build:lib && RELEASE=1 bun run build:cli",
|
|
23
24
|
"test": "bun test src test/unit",
|
|
24
25
|
"pw": "playwright test --reporter=list",
|
|
25
26
|
"pw:ci": "playwright test",
|
|
@@ -53,7 +54,7 @@
|
|
|
53
54
|
"worker:deploy:staging": "bun run build:site && bun run --bun wrangler deploy --env staging"
|
|
54
55
|
},
|
|
55
56
|
"bin": {
|
|
56
|
-
"zenuml": "./
|
|
57
|
+
"zenuml": "./dist/cli/zenuml.mjs"
|
|
57
58
|
},
|
|
58
59
|
"main": "./dist/zenuml.js",
|
|
59
60
|
"module": "./dist/zenuml.esm.mjs",
|
|
@@ -104,7 +105,6 @@
|
|
|
104
105
|
"devDependencies": {
|
|
105
106
|
"@eslint/js": "^9.39.2",
|
|
106
107
|
"@happy-dom/global-registrator": "^18.0.1",
|
|
107
|
-
"@napi-rs/canvas": "^0.1.97",
|
|
108
108
|
"@playwright/test": "^1.57.0",
|
|
109
109
|
"@storybook/addon-docs": "^9.1.17",
|
|
110
110
|
"@storybook/addon-onboarding": "^9.1.17",
|
|
@@ -144,5 +144,16 @@
|
|
|
144
144
|
"vite-plugin-svgr": "^4.5.0",
|
|
145
145
|
"vitest": "^3.2.4",
|
|
146
146
|
"wrangler": "^4.88"
|
|
147
|
+
},
|
|
148
|
+
"optionalDependencies": {
|
|
149
|
+
"@napi-rs/canvas": "^0.1.97"
|
|
150
|
+
},
|
|
151
|
+
"peerDependencies": {
|
|
152
|
+
"playwright-core": "^1.59.1"
|
|
153
|
+
},
|
|
154
|
+
"peerDependenciesMeta": {
|
|
155
|
+
"playwright-core": {
|
|
156
|
+
"optional": true
|
|
157
|
+
}
|
|
147
158
|
}
|
|
148
159
|
}
|