-
-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.04 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 3.04 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
{
"name": "typegpu-monorepo",
"version": "0.0.0",
"private": true,
"description": "A thin layer between JS and WebGPU/WGSL that improves development experience and allows for faster iteration.",
"keywords": [
"webgpu",
"wgpu",
"wgsl"
],
"homepage": "https://docs.swmansion.com/TypeGPU",
"bugs": {
"url": "https://github.com/software-mansion/TypeGPU/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/software-mansion/TypeGPU.git"
},
"type": "module",
"scripts": {
"dev": "DEV=true pnpm run --filter typegpu-docs dev",
"dev:host": "DEV=true pnpm run --filter typegpu-docs dev --host --mode https",
"fix": "oxlint -c oxlint.config.ts --fix && oxfmt",
"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/**/src/index.ts packages/**/src/index.js !packages/**/node_modules",
"test:types": "pnpm run --filter typegpu-docs transform-overloads && pnpm run -r --parallel test:types",
"test:style": "oxlint -c oxlint.config.ts --max-warnings=0 --type-aware --report-unused-disable-directives && oxfmt --check",
"test:unit-and-attest": "ENABLE_ATTEST=1 vitest run --project=!browser",
"test:unit": "vitest run --project=!browser",
"test:unit:watch": "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": "SKIP_TESTS=true pnpm --filter typegpu --filter @typegpu/noise --filter unplugin-typegpu prepublishOnly --skip-publish-tag-check",
"changes": "tgpu-dev-cli changes"
},
"devDependencies": {
"@typegpu/tgpu-dev-cli": "workspace:*",
"@types/bun": "^1.3.12",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "3.1.2",
"@webgpu/types": "catalog:types",
"bun": "catalog:",
"dpdm": "^3.14.0",
"eslint-plugin-eslint-plugin": "^7.3.2",
"eslint-plugin-typegpu": "workspace:*",
"jiti": "catalog:build",
"oxfmt": "^0.35.0",
"oxlint": "^1.57.0",
"oxlint-tsgolint": "^0.17.4",
"pkg-pr-new": "^0.0.66",
"typescript": "catalog:types",
"unplugin-typegpu": "workspace:*",
"vite-imagetools": "catalog:frontend",
"vitest": "catalog:test"
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "pnpm@10.15.1+sha512.34e538c329b5553014ca8e8f4535997f96180a1d0f614339357449935350d924e22f8614682191264ec33d1462ac21561aff97f6bb18065351c162c7e8f6de67",
"pnpm": {
"onlyBuiltDependencies": [
"@rolldown/browser",
"@tailwindcss/oxide",
"bun",
"canvas",
"esbuild",
"msw",
"sharp"
],
"overrides": {
"rollup": "catalog:build",
"vite": "8.0.5",
"@babel/types": "catalog:",
"@types/node": "catalog:types",
"typescript": "catalog:types",
"three": "catalog:example",
"@typescript-eslint/utils": "^8.57.2"
}
}
}