-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.28 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
{
"name": "slippi-clips",
"version": "1.1.2",
"description": "A way to transmit clips as slp files, for later recording",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"productName": "Slippi Clips",
"appId": "com.b3nd3rssbm.slippi-clips",
"files": [
"index.html",
"index.js",
"package.json"
],
"artifactName": "Slippi-Clips-${version}-${os}.${ext}",
"mac": {
"category": "your.app.category.type",
"target": [
"dmg"
]
},
"win": {
"target": "portable",
"publish": [
"github"
]
},
"linux": {
"target": [
"AppImage"
]
},
"dmg": {
"icon": "./icon.png"
},
"nsis": {
"unicode": "false"
}
},
"repository": {
"type": "git",
"url": "https://github.com/b3nd3r-ssbm/Slippi-Clips"
},
"dependencies": {
"child_process": "^1.0.2",
"electron-store": "^6.0.1"
},
"devDependencies": {
"electron": "^9.1.1",
"electron-builder": "^22.8.0"
},
"author": "b3nd3r-ssbm",
"license": "GPL-3.0-or-later"
}