forked from lutzroeder/netron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.13 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
32
33
34
35
{
"name": "netron",
"productName": "Netron",
"author": {
"name": "Lutz Roeder",
"email": "[email protected]",
"url": "https://www.lutzroeder.com"
},
"version": "4.4.1",
"description": "Visualizer for neural network, deep learning and machine learning models",
"license": "MIT",
"repository": "lutzroeder/netron",
"main": "src/app.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "[ -d node_modules ] || npm install && npx electron .",
"start_server": "[ -d node_modules ] || npm install && python setup.py --quiet build && PYTHONPATH=./dist/lib python -c 'import netron; netron.main()' $@"
},
"dependencies": {
"d3": "5.16.0",
"dagre": "0.8.5",
"electron-updater": "4.3.1",
"long": "4.0.0",
"marked": "1.1.1",
"pako": "1.0.11",
"universal-analytics": "0.4.23"
},
"devDependencies": {
"electron": "9.1.1",
"electron-builder": "22.7.0",
"electron-notarize": "1.0.0",
"eslint": "7.5.0",
"xmldom": "0.3.0"
}
}