-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 998 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 998 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
35
36
{
"name": "Kanto-Battle-Engine-TS",
"version": "0.0.0",
"description": "A faithful rebuild of the raw 1996 Pokémon Red and Blue battle system logic in TypeScript.",
"type": "module",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"lint": "biome check .",
"lint:fix": "biome check --apply .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"check": "pnpm lint && pnpm typecheck && pnpm test run"
},
"keywords": [],
"author": "GrégorySaison (@LeDevNovice)",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@types/node": "25.0.9",
"@vitest/ui": "4.0.17",
"happy-dom": "20.3.4",
"typescript": "5.9.3",
"vite": "7.3.1",
"vitest": "4.0.17"
}
}