-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.38 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
{
"name": "glimboi",
"productName": "GlimBoi",
"version": "2.7.6",
"description": "A chatbot for Glimesh.tv",
"main": "build/main.js",
"repository": {
"type": "git",
"url": "https://github.com/aMytho/GlimBoi.git"
},
"build": {
"appId": "GlimBoi",
"asar": true,
"asarUnpack": [
"src/overlays/**",
"resources/json/**"
],
"win": {
"icon": "resources/Icon/icon.png"
},
"nsis": {
"oneClick": true,
"installerIcon": "resources/Icons/icon.ico",
"installerHeaderIcon": "resources/Icons/icon.ico"
},
"linux": {
"target": "deb",
"synopsis": "A chatbot for Glimesh.tv",
"maintainer": "Mytho",
"vendor": "Mytho",
"executableName": "GlimBoi",
"icon": "resources/Icons/256x256.png"
},
"directories": {
"buildResources": "resources/Icons"
},
"files": [
"!docs/*",
"!dist/*",
"!@types/*",
"!lib/*",
"!scripts/*"
]
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsc --watch",
"start": "electron build/main.js",
"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",
"deploy": "node scripts/deploy.js",
"testDeploy": "electron-builder build --win --config.publish.provider=s3 --config.publish.endpoint=http://127.0.0.1:9000 --config.publish.bucket=test-update"
},
"author": "Mytho",
"license": "MIT",
"dependencies": {
"@seald-io/nedb": "^2.2.1",
"crypto-js": "^4.1.1",
"electron-is-dev": "^1.2.0",
"electron-log": "^4.3.1",
"electron-updater": "^4.3.5",
"electron-window-state": "^5.0.3",
"esm": "^3.2.25",
"flowbite": "^1.4.1",
"jquery": "^3.6.0",
"music-metadata": "^7.8.5",
"ws": "^7.5.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.2",
"@types/bootstrap": "^5.0.16",
"@types/crypto-js": "^4.0.2",
"@types/datatables.net": "^1.10.19",
"@types/jquery": "^3.5.5",
"@types/node": "^14.17.4",
"@types/ws": "^7.4.7",
"electron": "^18.2.0",
"electron-builder": "^22.11.11",
"open": "^8.4.0",
"pkginfo": "^0.4.1",
"tailwindcss": "^3.0.23",
"typescript": "^4.3.4"
}
}