-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.72 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "wok-client",
"productName": "WOK Client",
"version": "1.1.0-rc.17",
"private": true,
"description": "The fastest Krunker client. Ever.",
"main": "./bundle/main.mjs",
"desktopName": "wok-client.desktop",
"type": "module",
"scripts": {
"postinstall": "node scripts/install-electron.mjs",
"start": "node scripts/bundle.mjs && node scripts/start-electron.mjs",
"make": "node scripts/bundle.mjs && node scripts/verify-bundle.mjs && electron-forge make",
"bundle": "node scripts/bundle.mjs",
"bundle:verify": "node scripts/bundle.mjs && node scripts/verify-bundle.mjs",
"installer:art": "node scripts/generate-installer-art.mjs",
"installer:art:check": "node scripts/generate-installer-art.mjs --check",
"lint": "biome lint .",
"test": "node --test tests/*.test.ts",
"typecheck": "tsc --noEmit",
"validate": "pnpm run lint && pnpm run typecheck && pnpm test"
},
"author": "WOK contributors",
"license": "GPL-3.0-only",
"homepage": "https://wok.social",
"repository": {
"type": "git",
"url": "https://github.com/alx8g/wok-client.git"
},
"bugs": {
"url": "https://github.com/alx8g/wok-client/issues"
},
"keywords": [
"krunker",
"performance",
"wok"
],
"engines": {
"node": ">=24.13.0",
"pnpm": ">=11.15.1"
},
"devDependencies": {
"@biomejs/biome": "2.5.5",
"@electron-forge/cli": "8.0.0-alpha.10",
"@electron-forge/maker-base": "8.0.0-alpha.10",
"@electron-forge/maker-dmg": "8.0.0-alpha.10",
"@electron-forge/shared-types": "8.0.0-alpha.10",
"@electron/asar": "4.2.0",
"@reforged/maker-appimage": "^5.2.0",
"@types/node": "24.13.3",
"electron": "npm:electron-nightly@44.0.0-nightly.20260522",
"esbuild": "^0.28.1",
"typescript": "^6.0.3"
},
"packageManager": "pnpm@11.15.1"
}