-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.33 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.33 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
{
"name": "nvl-python-wrapper",
"version": "0.3.7",
"type": "module",
"scripts": {
"dev": "concurrently -n widget,html,jupyter -c cyan,magenta,green \"npm:dev:widget\" \"npm:dev:html\" \"npm:dev:jupyter\"",
"dev:widget": "vite build --watch",
"dev:html": "vite build --watch --config vite.config.html.ts",
"dev:jupyter": "cd ../python-wrapper && ANYWIDGET_HMR=1 uv run jupyter lab ../examples/",
"build": "tsc && vite build && vite build --config vite.config.html.ts",
"build:widget": "vite build",
"build:html": "vite build --config vite.config.html.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@anywidget/vite": "^0.2.2",
"@types/node": "^25.2.3",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.5.2",
"concurrently": "^9.2.1",
"typescript": "5.9.3",
"vite": "^7.3.1",
"vite-plugin-singlefile": "^2.3.0",
"vitest": "^4.0.0"
},
"dependencies": {
"@anywidget/react": "^0.2.0",
"@neo4j-ndl/base": "4.9.7",
"@neo4j-ndl/react": "4.9.17",
"@neo4j-ndl/react-graph": "1.2.35",
"@neo4j-nvl/base": "^1.1.0",
"@neo4j-nvl/interaction-handlers": "^1.1.0",
"@neo4j-nvl/react": "^1.1.0",
"@tanstack/react-table": "^8.20.5",
"react": "^19.2.4",
"react-dom": "^19.2.4"
}
}