-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.21 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.21 KB
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
{
"name": "wce",
"license": "GPL-3.0-or-later",
"type": "module",
"scripts": {
"start": "rolldown --watch -c & npx -y http-server@latest ./dist -p 4000 -c-1 --cors & npm run serve:bc",
"build": "rolldown -c",
"test": "oxlint",
"format": "oxfmt",
"format:check": "oxfmt --check",
"escheck": "npx es-check@latest es2022 ./dist/*.js --module",
"serve": "npm run serve:wce & npm run serve:bc",
"serve:wce": "npm run build && npx -y http-server@latest ./dist -p 4000 -c-1 --cors",
"serve:bc": "npx -y http-server@latest ../Bondage-College/BondageClub -s -p 3000 -c-1 --cors",
"update:bc": "(cd ../Bondage-College/ && git pull origin master)"
},
"dependencies": {
"@zendrex/buttplug.js": "^0.4.0",
"buttplug-wasm-blob": "^3.0.0",
"idb": "^8.0.3",
"rolldown": "^1.0.3"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.6.1",
"@types/events": "^3.0.3",
"@types/node": "^25.9.1",
"bc-stubs": "^128.0.0",
"bondage-club-mod-sdk": "^1.2.0",
"oxfmt": "^0.52.0",
"oxlint": "^1.67.0",
"oxlint-tsgolint": "^0.23.0",
"socket.io-client": "4.8.1"
},
"overrides": {
"bc-stubs": {
"socket.io-client": "$socket.io-client"
}
}
}