-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.48 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
{
"name": "typegpu-monorepo",
"private": true,
"version": "0.0.0",
"description": "A thin layer between JS and WebGPU/WGSL that improves development experience and allows for faster iteration.",
"license": "MIT",
"scripts": {
"dev": "DEV=true EXPERIMENTAL=true pnpm -r dev:build && DEV=true EXPERIMENTAL=true pnpm --parallel -r dev:watch",
"dev:test": "vitest",
"check": "biome check --write .",
"coverage": "vitest --coverage",
"test": "DEV=true EXPERIMENTAL=true pnpm -r dev:build && pnpm run '/^test:.*/'",
"test:types": "pnpm run -r test:types",
"test:spec": "vitest run"
},
"engines": {
"node": ">=12.20.0"
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSameLine": true,
"tabWidth": 2,
"printWidth": 80
},
"repository": {
"type": "git",
"url": "git+https://github.com/software-mansion/TypeGPU.git"
},
"keywords": ["webgpu", "wgpu", "wgsl"],
"bugs": {
"url": "https://github.com/software-mansion/TypeGPU/issues"
},
"homepage": "https://docs.swmansion.com/TypeGPU",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^20.11.13",
"@vitest/coverage-v8": "0.33.0",
"@vitest/ui": "0.33.0",
"dpdm": "^3.14.0",
"jsdom": "^24.0.0",
"prettier": "^3.2.4",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vitest": "0.33.0"
},
"packageManager": "pnpm@8.15.8+sha256.691fe176eea9a8a80df20e4976f3dfb44a04841ceb885638fe2a26174f81e65e"
}