-
Notifications
You must be signed in to change notification settings - Fork 2.8k
/
package.json
executable file
·53 lines (53 loc) · 1.62 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
53
{
"name": "netron",
"productName": "Netron",
"author": {
"name": "Lutz Roeder",
"email": "[email protected]",
"url": "https://www.lutzroeder.com"
},
"version": "8.0.0",
"date": "2024-11-09 02:34:08",
"description": "Visualizer for neural network, deep learning, and machine learning models",
"license": "MIT",
"repository": "lutzroeder/netron",
"type": "module",
"main": "source/app.js",
"scripts": {
"start": "node package.js start",
"server": "python package.py build start",
"test": "node test/models.js",
"lint": "node package.js lint",
"validate": "node package.js validate",
"clean": "node package.js clean",
"purge": "node package.js purge",
"install": "node package.js install",
"build": "node package.js build",
"publish": "node package.js publish",
"version": "node package.js version",
"coverage": "node package.js coverage",
"analyze": "node package.js analyze",
"update": "node package.js update",
"pull": "node package.js pull"
},
"dependencies": {
"electron-updater": "6.3.9"
},
"devDependencies": {
"@electron/notarize": "2.5.0",
"electron": "33.2.0",
"electron-builder": "25.1.8",
"eslint": "9.14.0"
},
"build": {
"extends": "publish/electron-builder.json"
},
"config": {
"forge": "publish/forge.config.js"
},
"nyc": {
"reporter": "json",
"report-dir": "dist/nyc/report",
"temp-dir": "dist/nyc/.nyc_output"
}
}