-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.89 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"author": "Stephen Niedzielski <stephen@oidoid.com> (https://oidoid.com)",
"bin": {
"void": "tools/void.js"
},
"bugs": "https://github.com/oidoid/void/issues",
"description": "basic 2D game library.",
"dependencies": {
"esbuild": "0.23.0",
"jsdom": "24.1.1"
},
"devDependencies": {
"@ampproject/filesize": "4.3.0",
"@biomejs/biome": "1.8.3",
"@types/jsdom": "21.1.7",
"@types/node": "18.19.31",
"mem-font": "11.0.0-2",
"typescript": "5.6.0-beta",
"vitest": "2.0.4"
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"!dist/**/tsconfig.tsbuildinfo",
"tools/atlas-parser.js",
"tools/tileset-parser.js"
],
"filesize": {
"dist/void.js": {
"none": "20.3 KB",
"gzip": "7.0 KB"
}
},
"homepage": "https://github.com/oidoid/void",
"keywords": ["game engine", "webgl"],
"license": "AGPL-3.0-only",
"main": "dist/index.js",
"name": "@oidoid/void",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oidoid/void.git"
},
"scripts": {
"build": "tsc --build",
"clean": "rm -rf dist",
"format": "npm run formatter -- --fix",
"formatter": "biome check --error-on-warnings",
"preversion": "[ -z \"$(git status -z)\" ]",
"prepublishOnly": "! git symbolic-ref --quiet HEAD || git push --follow-tags origin \"$(git branch --show-current)\"",
"start": "npm run build -- --watch",
"test": "npm run test:format && npm run test:unit && npm run build && npm run test:size",
"test:format": "npm run formatter",
"test:size": "npx esbuild --bundle --format=esm --metafile=dist/void.meta.json --minify --outfile=dist/void.js --sourcemap=linked --target=es2022 src/index.ts && filesize",
"test:unit": "vitest run",
"version": "npm test"
},
"type": "module",
"types": "dist/index.d.ts",
"version": "0.1.0-4"
}