forked from beyond-all-reason/bar-lobby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 4 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 4 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "bar-lobby",
"type": "module",
"version": "0.15.2",
"private": true,
"description": "Lobby client for the RTS game Beyond All Reason",
"author": "The BAR Lobby Authors",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "git+https://github.com/beyond-all-reason/bar-lobby.git"
},
"main": ".vite/build/main.cjs",
"scripts": {
"start": "cross-env NODE_OPTIONS=--enable-source-maps electron-forge start",
"package": "electron-forge package",
"preview": "electron-forge package && cross-env NODE_OPTIONS=--enable-source-maps NODE_ENV=production electron .",
"build:win": "electron-builder --config electron-builder.config.ts --win",
"buildall:win": "npm run package && npm run build:win",
"build:linux": "electron-builder --config electron-builder.config.ts --linux",
"buildall:linux": "npm run package && npm run build:linux",
"build:unpack": "electron-builder --config electron-builder.config.ts --dir",
"dev-cert": "electron-builder create-self-signed-cert -p \"BAR Team\"",
"build:win:dev-cert": "cross-env CSC_LINK=\"./BAR Team.pfx\" npm run build:win",
"postinstall": "electron-builder install-app-deps",
"release": "electron-builder --config electron-builder.config.ts",
"lint": "eslint --cache",
"test": "vitest tests",
"format": "prettier --experimental-cli --write .",
"format:check": "prettier --experimental-cli --check .",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "vue-tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "concurrently 'npm run typecheck:node' 'npm run typecheck:web'",
"checks": "concurrently 'npm run typecheck:web' 'npm run typecheck:node' 'npm run lint' 'npm run format:check'",
"generate-i18n-assets": "node --import=tsx tools/generate-i18n-asset-files.ts"
},
"engines": {
"node": "22.16.0"
},
"dependencies": {
"@extractus/feed-extractor": "^7.1.6",
"@iconify-icons/mdi": "^1.2.48",
"@iconify/json": "^2.2.362",
"@iconify/vue": "^5.0.0",
"@sinclair/typebox": "^0.34.38",
"@vueuse/core": "^13.5.0",
"7zip-bin": "^5.2.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"axios": "^1.11.0",
"chokidar": "^4.0.3",
"date-fns": "^4.1.0",
"dexie": "^4.0.11",
"dompurify": "^3.2.6",
"flag-icons": "^7.5.0",
"glob-promise": "^6.0.7",
"howler": "^2.2.4",
"luaparse": "^0.3.1",
"marked": "^16.1.1",
"node-abi": "^4.12.0",
"node-downloader-helper": "^2.1.9",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0",
"primeicons": "^6.0.1",
"primevue": "3.23.0",
"tachyon-protocol": "^1.12.0",
"vue-i18n": "^11.1.11",
"vue-router": "^4.5.1",
"ws": "^8.18.3"
},
"devDependencies": {
"@electron-forge/cli": "^7.8.1",
"@electron-forge/plugin-vite": "^7.8.1",
"@types/howler": "^2.2.12",
"@types/luaparse": "^0.2.12",
"@types/node": "^22.16.5",
"@types/ws": "^8.18.1",
"@vitejs/plugin-vue": "^6.0.0",
"concurrently": "^9.2.0",
"cross-env": "^7.0.3",
"electron": "37.2.4",
"electron-builder": "^26.0.12",
"electron-updater": "^6.6.2",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-vue": "^10.3.0",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"sass": "^1.89.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"unplugin-vue-router": "^0.14.0",
"vite": "^7.0.5",
"vite-plugin-static-copy": "^3.1.1",
"vite-plugin-vue-devtools": "^8.0.0",
"vitest": "^3.2.4",
"vue-tsc": "^3.0.3"
}
}