forked from lutzroeder/netron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.19 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
36
37
{
"name": "netron",
"productName": "Netron",
"author": {
"name": "Lutz Roeder",
"email": "[email protected]",
"url": "https://www.lutzroeder.com"
},
"version": "3.7.6",
"description": "Visualizer for neural network, deep learning and machine learning models",
"license": "MIT",
"repository": "lutzroeder/netron",
"main": "src/app.js",
"scripts": {
"start": "[ -d node_modules ] || npm install && npx electron .",
"start_server": "[ -d node_modules ] || npm install && python3 setup.py --quiet build && PYTHONPATH=./dist/lib python3 -c 'import netron; netron.main()' $@"
},
"dependencies": {
"d3": "5.15.0",
"dagre": "0.8.5",
"electron-updater": "4.2.0",
"flatbuffers": "1.11.0",
"handlebars": "4.7.0",
"long": "4.0.0",
"marked": "0.8.0",
"pako": "1.0.10",
"protobufjs": "github:lutzroeder/protobuf.js",
"universal-analytics": "0.4.20"
},
"devDependencies": {
"electron": "7.1.8",
"electron-builder": "22.2.0",
"electron-notarize": "0.2.1",
"eslint": "6.8.0",
"xmldom": "0.2.1"
}
}