-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 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
{
"name": "wce",
"type": "module",
"license": "GPL-3.0-or-later",
"scripts": {
"start": "rolldown --watch -c & npx http-server ./dist -p 4000 -c-1 --cors & npm run serve:bc",
"build": "rolldown -c",
"test": "npm run typecheck ; npm run lint",
"typecheck": "tsc",
"lint": "eslint ./src",
"serve": "npm run serve:wce & npm run serve:bc",
"serve:wce": "npm run build && npx http-server ./dist -p 4000 -c-1 --cors",
"serve:bc": "npx http-server ../Bondage-College/BondageClub -s -p 3000 -c-1 --cors",
"update:bc": "(cd ../Bondage-College/ && git pull origin master)"
},
"dependencies": {
"buttplug": "^3.2.2",
"dexie": "^4.0.11"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@stylistic/eslint-plugin": "^4.0.1",
"@total-typescript/ts-reset": "^0.6.1",
"@types/events": "^3.0.3",
"@types/node": "^22.13.5",
"bc-stubs": "^113.0.0",
"bondage-club-mod-sdk": "^1.2.0",
"eslint": "^9.21.0",
"globals": "^16.0.0",
"rolldown": "1.0.0-beta.3-commit.124516c",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1",
"ws": "^8.18.1"
},
"overrides": {
"bc-stubs": {
"socket.io-client": {
"engine.io-client": {
"ws": "$ws"
}
}
}
}
}