-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 808 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 808 Bytes
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
{
"name": "bga-assistant",
"version": "1.0.0",
"private": true,
"description": "Chrome extension — game assistant for Board Game Arena",
"type": "module",
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"game-log": "node --import tsx/esm scripts/game-log.ts",
"game-state": "node --import tsx/esm scripts/game-state.ts",
"package": "node --import tsx/esm scripts/package.ts"
},
"devDependencies": {
"@types/node": "^25.3.5",
"@vitest/coverage-v8": "^3.2.4",
"chrome-types": "^0.1.327",
"jsdom": "^28.1.0",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vitest": "^3.0.0"
},
"dependencies": {
"jszip": "^3.10.1"
}
}