-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.87 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.87 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
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "blit-tech",
"version": "0.2.0",
"type": "module",
"description": "A lightweight WebGPU retro engine for TypeScript, inspired by RetroBlit.",
"author": "Václav Vančura",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/vancura/blit-tech.git"
},
"homepage": "https://vancura.com/blit-tech",
"bugs": {
"url": "https://github.com/vancura/blit-tech/issues"
},
"keywords": [
"webgpu",
"typescript",
"retro",
"pixel-art",
"2d-demo",
"sprite",
"canvas",
"fantasy-console"
],
"engines": {
"node": ">=20.0.0"
},
"main": "./dist/blit-tech.cjs",
"module": "./dist/blit-tech.js",
"types": "./dist/blit-tech.d.ts",
"exports": {
".": {
"types": "./dist/blit-tech.d.ts",
"import": "./dist/blit-tech.js",
"require": "./dist/blit-tech.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"build": "vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "biome format --write . && prettier --write \"**/*.{md,mdx,yml,yaml}\"",
"format:check": "biome check . && prettier --check \"**/*.{md,mdx,yml,yaml}\"",
"format:biome": "biome format --write .",
"format:prettier": "prettier --write \"**/*.{md,mdx,yml,yaml}\"",
"typecheck": "tsc --noEmit",
"spellcheck": "cspell \"src/**/*.{ts,md,mdx}\" \"docs/**/*.{md,mdx}\" \"README.md\" --no-progress",
"preflight": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm spellcheck && pnpm knip",
"clean": "rm -rf dist node_modules/.vite",
"release": "pnpm build && pnpm publish",
"knip": "knip",
"knip:fix": "knip --fix",
"convert-font": "node scripts/convert-bmfont.mjs",
"prepublishOnly": "pnpm run build",
"prepare": "husky",
"security:audit": "pnpm audit --audit-level=moderate",
"security:audit:fix": "pnpm audit --fix"
},
"packageManager": "pnpm@10.26.2",
"pnpm": {
"overrides": {
"vite-node": "^5.2.0",
"esbuild": "^0.25.0"
}
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@eslint/js": "^9.39.2",
"@types/node": "^25.0.2",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"@webgpu/types": "^0.1.69",
"cspell": "^9.1.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^61.5.0",
"eslint-plugin-perfectionist": "^5.1.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"knip": "^5.56.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"vite": "^7.2.7",
"vite-plugin-dts": "^4.5.4"
}
}