-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.43 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "in-control",
"productName": "In Control",
"version": "0.1.8",
"description": "Robot dashboard & data viewer",
"author": {
"name": "Autumn O."
},
"dependencies": {
"@rollup/plugin-json": "^6.0.0",
"electron-fetch": "^1.7.4",
"jsonfile": "^6.1.0",
"ssh2": "^1.5.0"
},
"prettier": {
"printWidth": 120,
"trailingComma": "none"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "10.0.1",
"@types/chart.js": "^2.9.37",
"@types/jsonfile": "^6.1.1",
"@types/mathjs": "^9.4.2",
"@types/remarkable": "^2.0.3",
"@types/ssh2": "^1.11.7",
"@types/three": "^0.149.0",
"chart.js": "^3.9.1",
"download": "^8.0.0",
"electron": "^22.0.0",
"electron-builder": "^24.4.0",
"mathjs": "^11.3.0",
"prettier": "2.7.1",
"remarkable": "^2.0.1",
"rollup": "^3.8.0",
"rollup-plugin-cleanup": "^3.2.1",
"simple-statistics": "^7.7.6",
"three": "^0.144.0",
"tslib": "^2.4.0",
"typescript": "4.7.4"
},
"main": "bundles/main.js",
"scripts": {
"start": "electron bundles/main.js",
"compile": "rollup -c --configMain && rollup -c --configLargeRenderers && rollup -c --configSmallRenderers && rollup -c --configWorkers",
"quick": "rollup -c --configLargeRenderers && rollup -c --configMain",
"build": "npm run compile && electron-builder build",
"fast-build": "npm run compile && electron-builder build --dir",
"watch": "rollup -c -w",
"format": "prettier --write .",
"check-format": "prettier --check .",
"postinstall": "node ffmpegDownload.js"
},
"build": {
"win": {
"target": "nsis",
"icon": "icons/logo.png"
},
"mac": {
"target": "dmg",
"icon": "icons/logo.icns"
},
"linux": {
"target": [
"deb",
"AppImage",
"rpm"
],
"icon": "icons/logo.png",
"category": "Utility"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"multiLanguageInstaller": true
},
"publish": [
{
"provider": "github",
"private": true,
"owner": "Autumn-Ou",
"repo": "In-Control",
"token": "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"
}
]
}
}