-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.72 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
{
"name": "soothsayer",
"productName": "soothsayer",
"version": "1.7.19",
"description": "Soothsayer: A tool for generating OBS overlays for casting some video games.",
"main": "src/index.js",
"keywords": [],
"author": "falindrith",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ebshimizu/soothsayer.git"
},
"dependencies": {
"chokidar": "^2.0.4",
"electron-settings": "^3.2.0",
"electron-updater": "^4.0.6",
"express": "^4.16.3",
"extract-zip": "^1.6.7",
"fomantic-ui": "^2.4.2",
"fs-extra": "^7.0.0",
"heroprotocol": "github:GaryIrick/heroprotocol",
"hots-parser": "^7.38.2",
"jquery": "^3.3.1",
"level-js": "^2.2.4",
"linvodb3": "^3.25.1",
"medea": "^1.0.3",
"medeadown": "^1.1.9",
"moment": "^2.23.0",
"request": "^2.88.0",
"socket.io": "^2.2.0"
},
"devDependencies": {
"electron": "^4.0.1",
"electron-builder": "^21.0.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "15",
"eslint-plugin-import": "2",
"eslint-plugin-jsx-a11y": "5",
"eslint-plugin-react": "7"
},
"scripts": {
"pack": "electron-builder --dir",
"dist": "electron-builder",
"start": "electron ./",
"upload": "electron-builder --x64 --publish always",
"protocol": "node ./node_modules/heroprotocol-fallback/postinstall.js"
},
"build": {
"appId": "com.soothsayer.app",
"productName": "Soothsayer",
"asar": false,
"publish": [
{
"provider": "github",
"private": false
}
],
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"win": {
"target": "nsis"
},
"mac": {
"target": "dmg"
}
}
}