forked from asoronow/belljar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.46 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
{
"name": "ImSwitch",
"description": "An acquisition and control software for microscopy",
"version": "1.2.22",
"main": "main.js",
"repository": "openUC2/imswitchinstaller",
"author": "Bene <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"compile": "tsc",
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"dependencies": {
"@electron/remote": "^2.1.2",
"@fortawesome/fontawesome-free": "^6.1.1",
"axios": "^1.6.7",
"fs-ext": "^2.0.0",
"jsoneditor": "^10.0.1",
"node-fetch": "v2",
"python-shell": "^3.0.1",
"semver": "^7.5.4",
"tar": "^6.1.11",
"vanilla-jsoneditor": "^0.23.0",
"windows-shortcuts": "^0.1.6"
},
"devDependencies": {
"@electron-forge/cli": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"dotenv": "^16.3.1",
"electron": "^29.1.0",
"electron-builder": "^23.0.6",
"eslint": "^7.32.0",
"prettier": "^2.7.1",
"typescript": "^4.4.2"
},
"build": {
"appId": "com.imswitch.app",
"productName": "ImSwitch",
"mac": {
"icon": "build/icon.png",
"target": {
"target": "default",
"arch": [
"x64",
"arm64"
]
}
},
"win": {
"icon": "build/icon.ico",
"target": "nsis"
},
"linux": {
"target": [
"AppImage",
"deb"
]
}
}
}