-
-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.45 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.45 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
{
"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 pnpm --parallel -r dev",
"dev:host": "DEV=true pnpm --parallel -r dev --host --mode https",
"fix": "biome lint --write . && deno fmt",
"test": "pnpm run test:types && pnpm run test:style && pnpm run test:unit-and-attest && pnpm run test:circular-deps",
"test:circular-deps": "pnpm dpdm -T --exit-code circular:1 packages/**/index.ts",
"test:types": "pnpm run -r --parallel test:types",
"test:style": "biome lint . && deno fmt --check",
"test:unit-and-attest": "vitest run --project=!browser",
"test:unit": "ATTEST_skipTypes=1 vitest run --project=!browser",
"test:unit:watch": "ATTEST_skipTypes=1 vitest --project=!browser",
"test:browser": "vitest run --browser.enabled --project browser",
"test:browser:watch": "vitest --browser.enabled --project browser",
"test:coverage": "vitest --coverage run",
"nightly-build": "pnpm --filter typegpu --filter @typegpu/noise --filter unplugin-typegpu prepublishOnly --skip-all-checks",
"changes": "tgpu-dev-cli changes"
},
"engines": {
"node": ">=12.20.0"
},
"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.9.4",
"@typegpu/tgpu-dev-cli": "workspace:*",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "3.1.2",
"@webgpu/types": "catalog:types",
"dpdm": "^3.14.0",
"jiti": "catalog:build",
"pkg-pr-new": "^0.0.41",
"tsup": "catalog:build",
"typescript": "catalog:types",
"unplugin-typegpu": "workspace:*",
"vite-imagetools": "catalog:frontend",
"vitest": "catalog:test"
},
"packageManager": "pnpm@10.15.1+sha512.34e538c329b5553014ca8e8f4535997f96180a1d0f614339357449935350d924e22f8614682191264ec33d1462ac21561aff97f6bb18065351c162c7e8f6de67",
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"@rolldown/browser",
"@tailwindcss/oxide",
"canvas",
"esbuild",
"msw",
"sharp"
],
"overrides": {
"rollup": "4.34.8"
}
}
}