-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.34 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
{
"name": "StreamLurker",
"version": "1.0.8",
"description": "A Twitch Stream Lurking Tool",
"main": "index.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"keywords": [],
"author": {
"name": "EpicKitty",
"email": "[email protected]",
"url": "https://richardbowey.co.uk"
},
"license": "MIT",
"dependencies": {
"axios": "^1.6.5",
"electron-store": "^8.1.0"
},
"build": {
"appId": "epickitty.streamlurker",
"productName": "StreamLurker",
"win": {
"target": "nsis",
"icon": "./frontend/images/lurker_256.png"
},
"mac": {
"target": "dmg",
"icon": "./frontend/images/lurker_512.png"
},
"linux": {
"target": "deb",
"icon": "./frontend/images/lurker_256.png"
},
"files": [
"**/*",
"!config.*",
"!logs",
"!.*",
"!**/*.md",
"!**/*.{o,obj}",
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
"!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}",
"!**/node_modules/*.d.ts",
"!**/node_modules/.bin",
"!**/*.{spec,test}.{js,jsx,ts,tsx}",
"!**/test{,s}/**"
]
},
"type": "module",
"devDependencies": {
"electron": "^28.1.1",
"electron-builder": "^24.13.3"
}
}