-
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) · 1.03 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.03 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
{
"name": "blockwise",
"version": "2.12.0",
"description": "Minimalistic utility lib for writing simple 2d games where everything is a block.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ferdodo/blockwise"
},
"keywords": ["2d", "bloc", "box", "collision"],
"author": "Thomas Riffard",
"license": "MIT",
"scripts": {
"build": "biome ci --organize-imports-enabled=false && tsc && exportcase check src && tsc-alias && vitest run && stryker run && typedoc --treatWarningsAsErrors --plugin typedoc-plugin-include-example src/index.ts"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@stryker-mutator/core": "^8.2.6",
"@stryker-mutator/vitest-runner": "^8.2.6",
"@types/node": "^20.6.0",
"exportcase": "^0.10.0",
"json-schema-library": "^9.3.5",
"tsc-alias": "^1.8.7",
"typedoc": "^0.28.4",
"typedoc-plugin-include-example": "^3.0.2",
"typescript": "^5.2.2",
"vite": "^6.2.2",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0"
},
"dependencies": {
"rxjs": "^7.8.1"
}
}