-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 969 Bytes
/
package.json
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
{
"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": "tsc && tsc-alias && vitest run && stryker run && typedoc --treatWarningsAsErrors --plugin typedoc-plugin-include-example src/index.ts && dprint check"
},
"devDependencies": {
"@stryker-mutator/core": "^8.2.6",
"@stryker-mutator/vitest-runner": "^8.2.6",
"@types/node": "^20.6.0",
"dprint": "^0.41.0",
"json-schema-library": "^10.0.0-rc2",
"tsc-alias": "^1.8.7",
"typedoc": "^0.26.11",
"typedoc-plugin-include-example": "^2.0.2",
"typescript": "^5.2.2",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0"
},
"dependencies": {
"rxjs": "^7.8.1"
}
}