-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
38
39
40
41
{
"name": "mvdparser",
"version": "0.1.1",
"description": "Extract information from QuakeWorld MVD demos.",
"author": "Viktor Persson",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vikpe/mvdparser-js.git"
},
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"files": [
"index.ts",
"index.d.ts"
],
"exports": {
"types": "./index.d.ts",
"default": "./index.ts"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"format": "biome check --write index.ts index.test.ts",
"lint": "biome lint index.ts index.test.ts",
"test": "vitest run --coverage",
"test:watch": "vitest --watch --coverage"
},
"devDependencies": {
"@biomejs/biome": "^1.8.1",
"@types/node": "^20.14.5",
"@vitest/coverage-v8": "^1.6.0",
"jsdom": "^24.1.0",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vitest": "^1.6.0"
},
"dependencies": {}
}