forked from lutzroeder/netron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1007 Bytes
/
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
{
"name": "netron",
"productName": "Netron",
"author": {
"name": "Lutz Roeder",
"email": "[email protected]",
"url": "https://www.lutzroeder.com"
},
"version": "5.2.1",
"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": "python setup.py --quiet build && python -c 'import sys, os; sys.path.insert(0, os.path.join(\"dist\", \"lib\")); import netron; netron.main()' $@"
},
"dependencies": {
"electron-updater": "4.3.9"
},
"devDependencies": {
"electron": "14.0.1",
"electron-builder": "22.11.7",
"electron-notarize": "1.1.1",
"eslint": "7.32.0",
"@xmldom/xmldom": "0.7.5"
}
}