@zeniai/web-components 4.3.57-betaAK0 → 4.3.58-betaAK0
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/package.json +122 -46
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeniai/web-components",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.58-betaAK0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": [
|
|
@@ -25,6 +25,51 @@
|
|
|
25
25
|
"files": [
|
|
26
26
|
"dist"
|
|
27
27
|
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"clean": "rimraf build",
|
|
30
|
+
"build-stories": "export NODE_OPTIONS=--max-old-space-size=8192 && tsc --noEmit",
|
|
31
|
+
"test": "export NODE_OPTIONS=--max-old-space-size=8192 && pnpm lint-modified-files && tsc --noEmit && bash ./scripts/test-storybook-watch.sh",
|
|
32
|
+
"test-all": "export NODE_OPTIONS=--max-old-space-size=8192 && tsc --noEmit && test-storybook --updateSnapshot --maxWorkers 2 --testTimeout 30000",
|
|
33
|
+
"test-modified-files": "export NODE_OPTIONS=--max-old-space-size=8192 && chmod +x ./scripts/track_modified_files.sh && ./scripts/track_modified_files.sh && pnpm test && pnpm format-watch",
|
|
34
|
+
"storybook": "export NODE_OPTIONS=--max-old-space-size=8192 && storybook dev -p 6006",
|
|
35
|
+
"build-storybook": "export NODE_OPTIONS=--max-old-space-size=8192 && storybook build",
|
|
36
|
+
"circular-dependency": "npx madge --circular --extensions ts ./src",
|
|
37
|
+
"circular-dependency-modified-files": "chmod +x ./scripts/circular-dependency-modified-files.sh && ./scripts/circular-dependency-modified-files.sh",
|
|
38
|
+
"lint": "export NODE_OPTIONS=--max-old-space-size=8192 && time eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
|
|
39
|
+
"lint:fix": "chmod +x ./scripts/fix-lint.sh && ./scripts/fix-lint.sh",
|
|
40
|
+
"lint-modified-files": "chmod +x ./scripts/lint-modified-files.sh && ./scripts/lint-modified-files.sh",
|
|
41
|
+
"lint:fix-modified-files": "chmod +x ./scripts/lint-modified-files.sh && LINT_FIX=true ./scripts/lint-modified-files.sh",
|
|
42
|
+
"tsc-modified-files": "chmod +x ./scripts/tsc-modified-files.sh && ./scripts/tsc-modified-files.sh",
|
|
43
|
+
"data-testid-changes": "chmod +x ./scripts/data-testid-changes.sh && ./scripts/data-testid-changes.sh",
|
|
44
|
+
"typecheck": "export NODE_OPTIONS=--max-old-space-size=8192 && tsc --noEmit",
|
|
45
|
+
"typecheck:mocks": "export NODE_OPTIONS=--max-old-space-size=8192 && tsc --noEmit -p tsconfig.mocks.json",
|
|
46
|
+
"typecheck:mocks-modified-files": "chmod +x ./scripts/tsc-modified-files.sh && SINCE_DAYS=30 ./scripts/tsc-modified-files.sh master tsconfig.mocks.json",
|
|
47
|
+
"typecheck:stories": "export NODE_OPTIONS=--max-old-space-size=8192 && tsc --noEmit -p tsconfig.stories.json",
|
|
48
|
+
"typecheck:stories-modified-files": "chmod +x ./scripts/tsc-modified-files.sh && SINCE_DAYS=30 ./scripts/tsc-modified-files.sh master tsconfig.stories.json",
|
|
49
|
+
"build": "export NODE_OPTIONS=--max-old-space-size=8192 && pnpm lint-modified-files && pnpm tsc-modified-files && vite build",
|
|
50
|
+
"format": "prettier --write --ignore-unknown \"src/**/*\" && pnpm lint",
|
|
51
|
+
"format-watch": "FORMAT_WATCH_EXT='\\.(ts|tsx|js)$' bash ./scripts/run-format-watch.sh",
|
|
52
|
+
"format-staged": "git diff --cached --name-only --diff-filter=ACM | grep -E '\\.(ts|tsx|js)$' | xargs prettier --write || true",
|
|
53
|
+
"preview": "vite preview",
|
|
54
|
+
"version": "git add -A src",
|
|
55
|
+
"postversion": "git push && git push --tags",
|
|
56
|
+
"chromatic": "npx chromatic --project-token=b0f981300c3c --auto-accept-changes",
|
|
57
|
+
"analyze": "vite-bundle-visualizer -t sunburst",
|
|
58
|
+
"check-version": "node ./scripts/check_version.js",
|
|
59
|
+
"bump-update-web-app-cockpit-beta": "chmod +x ./scripts/bump_and_update_web_app_ui_beta.sh && ./scripts/bump_and_update_web_app_ui_beta.sh",
|
|
60
|
+
"publish-beta": "sh -c 'echo \"Publishing with tag: ${betaTag:-beta}\" && pnpm publish --tag ${betaTag:-beta} --no-git-checks'",
|
|
61
|
+
"build-beta": "export NODE_OPTIONS=--max-old-space-size=8192 && tsc && vite build --config vite.dev.config.ts && ([ -f dist/web-components.css ] && mv dist/web-components.css dist/index.css || true)",
|
|
62
|
+
"build-beta-and-copy": "chmod +x ./scripts/build_and_copy.sh && ./scripts/build_and_copy.sh",
|
|
63
|
+
"prepublishOnly": "chmod +x ./scripts/branch_validation.sh && ./scripts/branch_validation.sh && pnpm run check-version && pnpm update-slack-group-topic && pnpm clean && if [ -n \"$betaTag\" ]; then pnpm run build-beta; else pnpm run build; fi",
|
|
64
|
+
"check-dependencies": "node ./scripts/check_dependencies.js",
|
|
65
|
+
"clean-overrides": "node ./scripts/clean_overrides.js",
|
|
66
|
+
"update-slack-group-topic": "chmod +x ./scripts/update_slack_group_topic.sh && ./scripts/update_slack_group_topic.sh",
|
|
67
|
+
"raise-pr-automation": "chmod +x ./scripts/raise_pr_automation.sh && ./scripts/raise_pr_automation.sh",
|
|
68
|
+
"cherry-pick": "chmod +x ./scripts/cherry_pick.sh && ./scripts/cherry_pick.sh",
|
|
69
|
+
"prebuild": "node ./scripts/check-imports.js",
|
|
70
|
+
"prepare": "husky",
|
|
71
|
+
"find-unused-code": "knip"
|
|
72
|
+
},
|
|
28
73
|
"dependencies": {
|
|
29
74
|
"@emotion/cache": "^11.13.1",
|
|
30
75
|
"@emotion/react": "11.10.0",
|
|
@@ -80,9 +125,9 @@
|
|
|
80
125
|
"react-phone-number-input": "^3.1.50",
|
|
81
126
|
"react-plaid-link": "^3.3.2",
|
|
82
127
|
"react-player": "^3.4.0",
|
|
83
|
-
"react-select": "^5.
|
|
128
|
+
"react-select": "^5.2.2",
|
|
84
129
|
"react-virtualized-auto-sizer": "^1.0.24",
|
|
85
|
-
"react-vtree": "3.0.0-beta.
|
|
130
|
+
"react-vtree": "^3.0.0-beta.1",
|
|
86
131
|
"react-webcam": "^7.0.1",
|
|
87
132
|
"react-window": "^1.8.10",
|
|
88
133
|
"react-window-infinite-loader": "^1.0.8",
|
|
@@ -202,47 +247,78 @@
|
|
|
202
247
|
"type": "git",
|
|
203
248
|
"url": "https://github.com/zeni-ai/zeni-web-components.git"
|
|
204
249
|
},
|
|
205
|
-
"
|
|
206
|
-
"
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
"
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
"
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
"
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
250
|
+
"pnpm": {
|
|
251
|
+
"onlyBuiltDependencies": [
|
|
252
|
+
"@swc/core",
|
|
253
|
+
"node-jq"
|
|
254
|
+
],
|
|
255
|
+
"ignoredBuiltDependencies": [
|
|
256
|
+
"canvas",
|
|
257
|
+
"core-js",
|
|
258
|
+
"core-js-pure",
|
|
259
|
+
"esbuild",
|
|
260
|
+
"unrs-resolver"
|
|
261
|
+
],
|
|
262
|
+
"auditConfig": {
|
|
263
|
+
"ignoreGhsas": [
|
|
264
|
+
"GHSA-w5hq-g745-h8pq"
|
|
265
|
+
]
|
|
266
|
+
},
|
|
267
|
+
"overrides": {
|
|
268
|
+
"@babel/plugin-transform-modules-systemjs": ">=7.29.4",
|
|
269
|
+
"@eslint/eslintrc>ajv": ">=6.14.0 <7",
|
|
270
|
+
"@eslint/plugin-kit": ">=0.3.4",
|
|
271
|
+
"@tootallnate/once": ">=3.0.1",
|
|
272
|
+
"ajv": ">=8.18.0",
|
|
273
|
+
"ajv-keywords": ">=5.1.0",
|
|
274
|
+
"axios": ">=1.18.0",
|
|
275
|
+
"bfj": "9.1.3",
|
|
276
|
+
"body-parser": ">=1.20.6 <2",
|
|
277
|
+
"brace-expansion": ">=5.0.9",
|
|
278
|
+
"cosmiconfig>yaml": ">=1.10.3 <2",
|
|
279
|
+
"d3-color": ">=3.1.0",
|
|
280
|
+
"decode-uri-component": ">=0.2.1",
|
|
281
|
+
"esbuild": ">=0.28.1",
|
|
282
|
+
"eslint>ajv": ">=6.14.0 <7",
|
|
283
|
+
"fast-uri": ">=4.1.2",
|
|
284
|
+
"flatted": ">=3.4.2",
|
|
285
|
+
"follow-redirects": ">=1.16.0",
|
|
286
|
+
"form-data": ">=4.0.6",
|
|
287
|
+
"glob": "^11.1.0",
|
|
288
|
+
"http-proxy-middleware": ">=3.0.6 <4",
|
|
289
|
+
"immutable": ">=4.3.9 <5",
|
|
290
|
+
"joi": ">=17.13.4",
|
|
291
|
+
"js-yaml": ">=4.3.1 <5",
|
|
292
|
+
"launch-editor": ">=2.14.1",
|
|
293
|
+
"lodash": ">=4.18.1 <5",
|
|
294
|
+
"mdast-util-to-hast": ">=13.2.1",
|
|
295
|
+
"minimatch": ">=10.2.3",
|
|
296
|
+
"mux-embed": "5.15.0",
|
|
297
|
+
"node-forge": ">=1.4.0",
|
|
298
|
+
"npm-check": ">=2.0.1",
|
|
299
|
+
"nth-check": ">=2.0.1",
|
|
300
|
+
"nyc>glob": "7.2.3",
|
|
301
|
+
"on-headers": ">=1.1.0",
|
|
302
|
+
"path-to-regexp": "0.1.13",
|
|
303
|
+
"picomatch": ">=4.0.4",
|
|
304
|
+
"playwright-core": "1.62.1",
|
|
305
|
+
"postcss": ">=8.5.18",
|
|
306
|
+
"prismjs": ">=1.30.0",
|
|
307
|
+
"qs": ">=6.15.2",
|
|
308
|
+
"rollup": ">=4.59.0",
|
|
309
|
+
"serialize-javascript": ">=7.0.5",
|
|
310
|
+
"shell-quote": ">=1.9.0",
|
|
311
|
+
"svgo": ">=4.0.2",
|
|
312
|
+
"tar": ">=7.5.21",
|
|
313
|
+
"tar-fs": ">=3.1.1",
|
|
314
|
+
"test-exclude>glob": "7.2.3",
|
|
315
|
+
"tmp": ">=0.2.6",
|
|
316
|
+
"uuid": "^11.1.1",
|
|
317
|
+
"webpack": ">=5.104.1",
|
|
318
|
+
"webpack-dev-server": ">=5.2.6 <6",
|
|
319
|
+
"websocket-driver": "0.7.5",
|
|
320
|
+
"ws": ">=8.21.0",
|
|
321
|
+
"yaml": ">=2.8.3"
|
|
322
|
+
}
|
|
247
323
|
}
|
|
248
|
-
}
|
|
324
|
+
}
|