forked from lutzroeder/netron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.01 KB
/
package.json
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
{
"name": "netron",
"productName": "Netron",
"author": {
"name": "Lutz Roeder",
"email": "[email protected]",
"url": "https://www.lutzroeder.com"
},
"version": "4.7.6",
"description": "Visualizer for neural network, deep learning, and machine learning models",
"license": "MIT",
"repository": "lutzroeder/netron",
"main": "source/app.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "[ -d node_modules ] || npm install && npx electron .",
"server": "[ -d node_modules ] || npm install && python setup.py --quiet build && PYTHONPATH=./dist/lib python -c 'import netron; netron.main()' $@"
},
"dependencies": {
"d3": "6.5.0",
"dagre": "0.8.5",
"electron-updater": "4.3.5"
},
"devDependencies": {
"electron": "11.2.3",
"electron-builder": "22.10.4",
"electron-notarize": "1.0.0",
"eslint": "7.19.0",
"xmldom": "0.4.0"
}
}