forked from lutzroeder/netron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.15 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": "lutzroeder@users.noreply.github.com",
"url": "https://www.lutzroeder.com"
},
"version": "3.3.2",
"description": "Viewer neural network 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=build/lib python3 -c 'import netron; netron.main()' $@"
},
"dependencies": {
"d3": "5.11.0",
"dagre": "0.8.4",
"electron-updater": "4.1.2",
"flatbuffers": "1.11.0",
"handlebars": "4.2.0",
"long": "4.0.0",
"marked": "0.7.0",
"pako": "1.0.10",
"protobufjs": "github:lutzroeder/protobuf.js",
"universal-analytics": "0.4.20"
},
"devDependencies": {
"electron": "6.0.7",
"electron-builder": "21.2.0",
"electron-notarize": "0.1.1",
"eslint": "6.3.0",
"xmldom": "0.1.27"
}
}