-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.27 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
91
92
93
94
95
96
{
"name": "mimacro",
"version": "1.1.0-beta.1",
"description": "The ultimate microcontroller macro solution",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "rollup -c && electron .",
"build": "yarn rollup -c",
"dev": "rollup -c -w",
"pack": "yarn rollup -c && yarn electron-builder --dir",
"dist": "rollup -c && electron-builder"
},
"author": "mimacro Team <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"@jitsi/robotjs": "^0.6.13",
"@rollup/plugin-typescript": "^11.1.1",
"@sienci/avrgirl-arduino": "^5.0.3",
"@tabler/icons-svelte": "^2.30.0",
"adm-zip": "^0.5.10",
"electron-store": "^8.1.0",
"electron-updater": "^6.1.4",
"loudness": "^0.4.2",
"marked": "^12.0.0",
"serialport": "^12.0.0",
"sirv-cli": "^2.0.0",
"tslib": "^2.5.3",
"usb": "^2.13.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@electron/rebuild": "^3.2.13",
"@rollup/plugin-commonjs": "^25.0.1",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@tsconfig/svelte": "^5.0.2",
"@types/uuid": "^9.0.2",
"electron": "^29.1.0",
"electron-builder": "^24.6.4",
"rollup": "^4.12.0",
"rollup-plugin-css-only": "^4.3.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.1.2",
"svelte": "^4.2.12",
"svelte-check": "^3.4.3",
"svelte-preprocess": "^5.0.4",
"typescript": "^5.1.3"
},
"build": {
"appId": "io.mimacroteam.mimacro",
"productName": "mimacro",
"icon": "icon.png",
"win": {
"target": "nsis",
"icon": "icon.png",
"publish": [
"github"
]
},
"linux": {
"target": [
{
"target": "deb",
"arch": [
"x64",
"armv7l"
]
},
"tar.gz",
{
"target": "AppImage",
"arch": [
"x64"
]
}
],
"icon": "icon.png"
},
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
],
"icon": "icon.png"
},
"extraFiles": [
"bundled-plugins"
]
}
}