This repository has been archived by the owner on Feb 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
70 lines (70 loc) · 1.56 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": "kahoot-win",
"version": "6.0.1",
"description": "A Kahoot Cheating Website",
"main": "kahoot.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"generate": "cd src; node generate.js",
"reformat": "npm uninstall electron electron-builder && node reformat.js && npm run generate"
},
"keywords": [
"kahoot"
],
"author": "theusaf",
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"emoji-regex": "^9.2.1",
"express": "^4.17.1",
"got": "^11.8.1",
"ip": "^1.1.5",
"kahoot-search": "^1.0.4",
"kahoot.js-updated": "^2.3.3",
"semver": "^7.3.4",
"user-agents": "^1.0.561",
"ws": "^7.4.2",
"yauzl": "^2.10.0"
},
"devDependencies": {
"electron": "^11.2.1",
"electron-builder": "^22.9.1",
"eslint": "^7.18.0",
"minify": "^7.0.0"
},
"build": {
"appId": "io.github.theusaf.kahoot-win",
"productName": "Kahoot Winner",
"copyright": "Copyright ©2020-2021 theusaf",
"mac": {
"icon": "icon.icns",
"target": "dmg"
},
"dmg": {
"icon": "install.icns",
"title": "Kahoot Winner Install"
},
"win": {
"icon": "icon.ico",
"target": "portable"
},
"linux": {
"icon": "icon.png",
"target": "AppImage"
},
"files": [
"public",
"locales",
"kahoot.js",
"app",
"package.json"
],
"appImage": {
"category": "Game",
"license": "LICENSE"
}
}
}