-
-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 3.02 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
{
"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:built-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 --ignore-pattern 'packages/typegpu-cli/templates/template-expo-bare/**' --report-unused-disable-directives && oxlint -c oxlint.config.ts --max-warnings=0 packages/typegpu-cli/templates/template-expo-bare --report-unused-disable-directives && oxfmt --check",
"test:unit-and-attest": "ENABLE_ATTEST=1 vitest run --project=!browser",
"test:unit": "vitest run --project=!browser",
"test:built-unit": "pnpm run --filter './packages/*' build && TEST_BUILT=1 vitest run --project=!browser",
"test:built-unit-and-attest": "pnpm run --filter './packages/*' build && TEST_BUILT=1 ENABLE_ATTEST=1 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",
"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-internal": "workspace:*",
"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",
"typegpu-testing-utility": "workspace:*",
"typescript": "catalog:types",
"unplugin-typegpu": "workspace:*",
"vite-imagetools": "catalog:frontend",
"vitest": "catalog:test"
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "pnpm@11.1.2+sha512.415a1cc25974731e75455c1468371be74c5aa5fb7621b50d4056d222451609f11412f23fd602e6169f1e060466641f798597e1be961a10688836a67b16569499"
}