-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.25 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
{
"name": "kdc-overlay",
"version": "2024.2.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist/",
"build": "npm run clean && pkg . && echo @echo off >> dist/kdc-overlay.cmd && echo kdc-overlay.exe >> dist/kdc-overlay.cmd && echo pause >> dist/kdc-overlay.cmd",
"postinstall": "patch-package",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"chokidar": "^3.6.0",
"express": "^4.19.2",
"googleapis": "^136.0.0",
"osu-api-extended": "^2.8.3",
"patch-package": "^8.0.0",
"socket.io": "^4.7.5",
"websocket": "^1.0.34"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.1",
"@vue/eslint-config-prettier": "^9.0.0",
"eslint": "^9.0.0",
"ncp": "^2.0.0",
"pkg": "^5.8.1",
"prettier": "^3.2.5",
"rimraf": "^5.0.7"
},
"bin": {
"app": "./index.js"
},
"pkg": {
"scripts": [],
"assets": [
"public/**/*",
"templates/**/*",
"credentials.json"
],
"targets": [
"node18-win-x64"
],
"outputPath": "dist"
}
}