-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 741 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 741 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
{
"name": "gsd-viewer",
"version": "1.6.0",
"description": "3D visualization of GSD project structure",
"main": "src/main/main.js",
"scripts": {
"build": "esbuild src/renderer/renderer.js --bundle --outfile=src/renderer/bundle.js --format=iife --platform=browser",
"start": "npm run build && electron . --no-sandbox",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"electron": "^28.0.0",
"esbuild": "^0.27.2",
"jest": "^30.2.0"
},
"author": "",
"license": "MIT",
"dependencies": {
"@dagrejs/dagre": "^2.0.3",
"3d-force-graph": "^1.79.0",
"chokidar": "^3.6.0",
"d3": "^7.9.0",
"electron-store": "^8.2.0"
}
}