-
-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.88 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.88 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "typegpu",
"version": "0.11.8",
"description": "A thin layer between JS and WebGPU/WGSL that improves development experience and allows for faster iteration.",
"keywords": [
"compute",
"gpgpu",
"shader",
"shaders",
"typescript",
"webgpu",
"wgpu",
"wgsl"
],
"homepage": "https://typegpu.com",
"bugs": {
"url": "https://github.com/software-mansion/TypeGPU/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/software-mansion/TypeGPU.git",
"directory": "packages/typegpu"
},
"bin": "./bin.mjs",
"type": "module",
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
".": {
"types": "./src/index.d.ts",
"default": "./src/index.js"
},
"./data": "./src/data/index.ts",
"./std": "./src/std/index.ts",
"./common": "./src/common/index.ts",
"./$built$": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./data/$built$": {
"types": "./dist/data/index.d.ts",
"default": "./dist/data/index.js"
},
"./std/$built$": {
"types": "./dist/std/index.d.ts",
"default": "./dist/std/index.js"
},
"./common/$built$": {
"types": "./dist/common/index.d.ts",
"default": "./dist/common/index.js"
}
},
"publishConfig": {
"access": "public",
"directory": "dist",
"exports": {
"./package.json": "./dist/package.json",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./data": {
"types": "./dist/data/index.d.ts",
"default": "./dist/data/index.js"
},
"./std": {
"types": "./dist/std/index.d.ts",
"default": "./dist/std/index.js"
},
"./common": {
"types": "./dist/common/index.d.ts",
"default": "./dist/common/index.js"
}
},
"linkDirectory": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"scripts": {
"build": "tsdown",
"test:types": "pnpm tsc --p ./tsconfig.test.json --noEmit",
"prepublishOnly": "tgpu-dev-cli prepack"
},
"dependencies": {
"tinyest": "workspace:~",
"tsover-runtime": "^0.0.7",
"typed-binary": "^4.3.3"
},
"devDependencies": {
"@ark/attest": "^0.56.0",
"@typegpu/tgpu-dev-cli": "workspace:*",
"@types/node": "catalog:types",
"@webgpu/types": "catalog:types",
"arktype": "catalog:",
"jiti": "catalog:build",
"jsdom": "^27.0.0",
"tsdown": "catalog:build",
"typegpu-testing-utility": "workspace:*",
"typescript": "catalog:types",
"unplugin-typegpu": "workspace:*",
"wgpu-matrix": "catalog:example"
},
"engines": {
"node": ">=12.20.0"
},
"packageManager": "pnpm@10.15.1+sha512.34e538c329b5553014ca8e8f4535997f96180a1d0f614339357449935350d924e22f8614682191264ec33d1462ac21561aff97f6bb18065351c162c7e8f6de67"
}