-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 4.63 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 4.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "vuu-ui",
"version": "0.0.2",
"author": "heswell <steve@heswell.com>",
"license": "Apache-2.0",
"private": true,
"main": "./lib/index.js",
"bin": {
"vuu": "./lib/index.js"
},
"type": "module",
"workspaces": [
"experiments/**",
"packages/**",
"sample-apps/**",
"tools/vite-plugin-inline-css",
"tools/esbuild-plugin-inline-css",
"tools/vuu-showcase"
],
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"prettier": "prettier './**/*.{js,mjs,jsx,css,md,json}' --config ./.prettierrc",
"format": "prettier --write './**/*.{js,mjs,jsx,css,md,json}' --config ./.prettierrc",
"build": "node ./scripts/build-all-rollup.mjs",
"build:dev": "node ./scripts/build-all.mjs",
"build:app": "cd sample-apps/app-vuu-example && node scripts/build.mjs",
"build:app:insecure": "npm run build:app -- --insecure",
"build:table": "cd sample-apps/standalone-table && node scripts/build.mjs",
"build:packages": "npm run build -- --cjs --license && npm run type-defs",
"build:packages:debug": "npm run build -- --cjs --debug && npm run type-defs -- --debug",
"build:themes": "node ./scripts/build-themes.mjs",
"build:worker": "cd packages/vuu-data-remote && npm run build:worker",
"launch:app": "node ./scripts/launch-app.mjs",
"launch:table": "node ./scripts/launch-table.mjs",
"launch:demo:electron": "cd tools/electron && node ./node_modules/.bin/electron .",
"deploy:websocket-test": "node ./tools/deploy-websocket-test.mjs",
"view-bundle": "node ./scripts/visualize-bundle.mjs",
"type-defs": "node ./scripts/build-all-type-defs.mjs",
"showcase": "cd showcase && tsx ../tools/vuu-showcase/scripts/showcase-dev.ts",
"showcase:prod": "npm run build:worker && cd showcase && tsx ../tools/vuu-showcase/scripts/showcase-build.ts",
"test:cypress": "npm run build:worker && cypress run --component --browser chrome --headless",
"test:cypress:local": "cypress open --component --browser chrome",
"test:playwright:ct": "playwright test --config=playwright-ct.config.ts",
"test:playwright:ct:headed": "playwright test --config=playwright-ct.config.ts --headed",
"test:playwright:ct:ui": "playwright test --config=playwright-ct.config.ts --ui",
"test:playwright:ct:report": "playwright test --config=playwright-ct.config.ts --reporter=html",
"test:vite": "npm run build:worker && vitest run",
"bump": "node ./scripts/version.mjs",
"pub": "node ./scripts/publish.mjs",
"pub:debug": "node ./scripts/publish.mjs --debug",
"typecheck": "tsc --noEmit --project tsconfig-typecheck.json",
"patch-package": "patch-package",
"postinstall": "npm run patch-package"
},
"dependencies": {
"@dnd-kit/react": "^0.1.19",
"@types/jest": "^29.5.11",
"@types/node": "^18.0.0",
"@types/react": ">=18.3.3",
"@types/react-dom": ">=18.0.0",
"@typescript-eslint/parser": "^5.41.0",
"clsx": "^2.0.0",
"html-to-image": "^1.11.11",
"patch-package": "^8.0.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"rollup-plugin-webpack-stats": "^0.2.5",
"semver": "^7.5.2"
},
"devDependencies": {
"@lezer/generator": "^1.2.2",
"@playwright/experimental-ct-react": "^1.55.0",
"@playwright/test": "^1.43.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.3.1",
"@rollup/plugin-replace": "6.0.3",
"@salt-ds/core": "1.48.0",
"@testing-library/cypress": "10.0.3",
"@testing-library/dom": "^9.0.0",
"@types/jsdom": "^21.1.2",
"@types/testing-library__cypress": "5.0.13",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@vitejs/plugin-react": "4.3.4",
"chalk": "^5.2.0",
"cypress": "13.15.0",
"cypress-axe": "1.6.0",
"cypress-real-events": "1.14.0",
"esbuild": "0.27.2",
"esbuild-visualizer": "0.7.0",
"eslint": "8.36.0",
"eslint-config-prettier": "8.7.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-prettier": "4.2.5",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"happy-dom": "^20.0.10",
"local-web-server": "5.4.0",
"prettier": "3.3.3",
"rollup": "4.24.4",
"rollup-plugin-esbuild": "6.1.1",
"rollup-plugin-import-css": "3.5.6",
"stylelint": "^16.10.0",
"stylelint-prettier": "^5.0.2",
"tinycolor2": "1.4.2",
"tsx": "^4.19.1",
"typescript": "5.8.3",
"vite": "6.4.1",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.1.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.45.0"
},
"engines": {
"node": ">=20.0.0"
}
}