forked from lutzroeder/netron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.58 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "netron",
"productName": "Netron for Furiosa",
"author": {
"name": "Lutz Roeder",
"email": "[email protected]",
"url": "https://www.lutzroeder.com"
},
"build": {
"appId": "netron",
"mac": {
"category": "netron",
"icon": "publish/icon.png"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
],
"icon": "publish/icon.png"
}
},
"version": "0.2.0",
"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 && python -c 'import sys, os; sys.path.insert(0, os.path.join(\"dist\", \"lib\")); import netron; netron.main()' $@",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"dependencies": {
"d3": "6.6.0",
"dagre": "0.8.5",
"electron-updater": "4.3.8"
},
"devDependencies": {
"electron": "12.0.1",
"electron-builder": "22.10.5",
"electron-notarize": "1.0.0",
"eslint": "7.21.0",
"xmldom": "0.5.0"
}
}