-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 812 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 812 Bytes
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
{
"name": "widget",
"type": "module",
"scripts": {
"dev:esbuild": "concurrently \"npm run build -- --sourcemap=inline --watch\" \"ANYWIDGET_HMR=1 hatch run jupyter lab\"",
"build:esbuild": "esbuild widget/widget.ts --minify --format=esm --bundle --outdir=ghostumap/static",
"dev": "concurrently \"vite\" \"ANYWIDGET_HMR=1 hatch run jupyter lab\"",
"build": "vite build",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@anywidget/react": "^0.1.0",
"@anywidget/types": "^0.2.0",
"@types/d3": "^7.4.3",
"d3": "^7.9.0",
"lit": "^3.2.1",
"lit-html": "^3.2.1"
},
"devDependencies": {
"@anywidget/vite": "^0.2.1",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@webgpu/types": "^0.1.55",
"concurrently": "^9.1.2",
"typescript": "^5.8.2",
"vite": "^6.2.1"
}
}