-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (81 loc) · 2.07 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
{
"name": "obs-face-expression-app",
"version": "1.0.0",
"description": "",
"main": "src/main.js",
"build": {
"appId": "obs-face-expression-app",
"asar": true,
"asarUnpack": [
"src/overlays/**",
"resources/json/**"
],
"win": {
"icon": "resources/icon/icon.png"
},
"linux": {
"target": "deb",
"synopsis": "A chatbot for Glimesh.tv",
"maintainer": "LateNightIceCream",
"vendor": "LateNightIceCream",
"executableName": "obs-face-expresion-app",
"icon": "resources/icon/icon.png"
},
"directories": {
"buildResources": "resources/icon"
},
"files": [
"!docs/*",
"!dist/*",
"!@types/*",
"!lib/*",
"!scripts/*"
]
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"gulp": "gulp",
"dev": "tsc --watch",
"start": "electron .",
"build": "tsc --project tsconfig.production.json && tsc && npx tailwindcss -c ./tailwind.config.js -o ./src/output.css -i ./src/styles.css",
"build:exe": "electron-builder build --win --publish never",
"build:linux": "electron-builder build --linux --publish never"
},
"author": "",
"license": "MIT",
"dependencies": {
"@picocss/pico": "^1.5.6",
"electron-squirrel-startup": "^1.0.0",
"fs": "^0.0.1-security",
"obs-websocket-js": "^5.0.2",
"path": "^0.12.7"
},
"devDependencies": {
"@electron-forge/cli": "^6.0.0",
"electron-builder": "^23.6.0",
"@electron-forge/maker-deb": "^6.0.0",
"@electron-forge/maker-rpm": "^6.0.0",
"@electron-forge/maker-squirrel": "^6.0.0",
"@electron-forge/maker-zip": "^6.0.0",
"electron": "^21.2.2",
"gulp": "^4.0.2"
},
"config": {
"forge": {
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"authors": "YOU",
"iconUrl": "https://your_site/favicon.ico",
"exe": "obsface.exe",
"name": "bingo bongo"
},
"platforms": [
"windows"
]
}
]
}
}
}