-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 882 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 882 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
31
32
33
34
{
"name": "bga-assistant",
"version": "1.6.0",
"private": true,
"description": "Chrome extension — game assistant for Board Game Arena",
"type": "module",
"packageManager": "npm@11.18.0",
"engines": {
"node": ">=24"
},
"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": "^24.0.0",
"@vitest/coverage-v8": "^4.1.9",
"chrome-types": "^0.1.327",
"jsdom": "^29.1.1",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vite": "^8.1.2",
"vitest": "^4.1.9"
},
"dependencies": {
"jszip": "^3.10.1"
}
}