-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.18 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.18 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
{
"name": "terrorlink",
"version": "1.0.0",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.7.3"
},
"workspaces": [
"packages/*",
"projects/*"
],
"scripts": {
"install:steamcmd": "sh ./scripts/install-steamcmd.sh",
"install:counterstrike": "sh ./scripts/install-counterstrike.sh",
"install:cssharp": "sh ./scripts/install-cssharp.sh",
"dev:client": "bun run --watch ./projects/terrorlink-client",
"dev:server": "bun run --watch ./projects/terrorlink-server",
"dev:game": "./game/counterstrike/game/bin/win64/cs2.exe -dedicated +map de_dust2 +sv_setsteamaccount $(bun --print process.env.CS2_SERVER_ACCOUNT) +tl_apitoken $(bun --print process.env.GAMESTATE_TOKEN)",
"dev:plugin": "sh ./scripts/dev-plugin.sh",
"build:client": "bun build --compile ./projects/terrorlink-client/index.ts --outfile ./terrorlink.exe",
"build:plugin": "dotnet build",
"prod:server": "bun run ./projects/terrorlink-server"
},
"trustedDependencies": [
"@biomejs/biome"
],
"patchedDependencies": {
"node-web-audio-api@1.0.1": "patches/node-web-audio-api@1.0.1.patch"
}
}