-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.15 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
{
"name": "myio-widget-build",
"private": true,
"scripts": {
"build": "esbuild inst/htmlwidgets/myIO/src/index.js --bundle --minify --format=iife --external:@duckdb/duckdb-wasm --loader:.wasm=file --outfile=inst/htmlwidgets/myIO/myIOapi.js",
"schema": "node tools/build-myio-schema.mjs",
"watch": "esbuild inst/htmlwidgets/myIO/src/index.js --bundle --format=iife --outfile=inst/htmlwidgets/myIO/myIOapi.js --watch",
"verify": "npm run build && node -e \"require('fs').readFileSync('inst/htmlwidgets/myIO/myIOapi.js','utf8')\" && echo 'Bundle OK'",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:playwright": "playwright test tests/playwright"
},
"dependencies": {
"alasql": "^4.17.3",
"apache-arrow": "^21.2.0",
"d3-force": "^3.0.0",
"regl": "^2.1.0",
"regl-scatterplot": "^1.16.0"
},
"overrides": {
"shell-quote": "^1.10.0"
},
"devDependencies": {
"@duckdb/duckdb-wasm": "^1.28.0",
"@playwright/test": "^1.62.0",
"@vitest/coverage-v8": "^4.1.10",
"d3": "^7.9.0",
"d3-sankey": "^0.12.3",
"esbuild": "^0.28.1",
"jsdom": "^29.1.1",
"vitest": "^4.1.8"
}
}