-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
76 lines (76 loc) · 2.1 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
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
{
"name": "typegpu",
"private": true,
"version": "0.3.4",
"description": "A thin layer between JS and WebGPU/WGSL that improves development experience and allows for faster iteration.",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"import": "./dist/index.js",
"default": "./dist/index.cjs"
},
"./data": {
"types": "./dist/data/index.d.ts",
"module": "./dist/data/index.js",
"import": "./dist/data/index.js",
"default": "./dist/data/index.cjs"
},
"./std": {
"types": "./dist/std/index.d.ts",
"module": "./dist/std/index.js",
"import": "./dist/std/index.js",
"default": "./dist/std/index.cjs"
}
},
"sideEffects": false,
"scripts": {
"dev:watch": "DEV=true tsup --watch",
"dev:build": "DEV=true tsup",
"build": "tsup",
"test:types": "pnpm tsc --p ./tsconfig.json --noEmit && pnpm tsc --p ./tsconfig.test.json --noEmit",
"publish": "echo \"Use pnpm prepare-package instead!\" && exit 1",
"prepare-package": "tgpu-dev-cli prepack"
},
"engines": {
"node": ">=12.20.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/software-mansion/TypeGPU.git"
},
"keywords": [
"webgpu",
"wgpu",
"wgsl",
"typescript",
"compute",
"shader",
"shaders",
"gpgpu"
],
"bugs": {
"url": "https://github.com/software-mansion/TypeGPU/issues"
},
"homepage": "https://typegpu.com",
"devDependencies": {
"@typegpu/tgpu-dev-cli": "workspace:*",
"@types/node": "^20.11.13",
"@webgpu/types": "^0.1.51",
"rollup-plugin-typegpu": "workspace:*",
"tgpu-wgsl-parser": "workspace:*",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"wgpu-matrix": "^3.3.0"
},
"packageManager": "[email protected]+sha256.691fe176eea9a8a80df20e4976f3dfb44a04841ceb885638fe2a26174f81e65e",
"dependencies": {
"tinyest": "workspace:~0.1.0-alpha.1",
"typed-binary": "^4.3.1"
}
}