-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.96 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.96 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
{
"name": "wgpu-bun",
"version": "29.1.0",
"description": "WebGPU for Bun. A bun:ffi binding to wgpu-native, API-compatible with the `webgpu` package \u2014 headless compute and offscreen rendering, no canvas required.",
"license": "MIT",
"author": "Yuuki Wesp <y.wesp@argon.gl>",
"repository": {
"type": "git",
"url": "git+https://github.com/argon-chat/wgpu.git"
},
"homepage": "https://github.com/argon-chat/wgpu#readme",
"bugs": {
"url": "https://github.com/argon-chat/wgpu/issues"
},
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"types": "./src/index.ts",
"bun": "./src/index.ts",
"import": "./src/index.ts"
},
"./image": {
"types": "./src/image.ts",
"bun": "./src/image.ts",
"import": "./src/image.ts"
},
"./manifest": {
"types": "./wgpu-native.manifest.ts",
"bun": "./wgpu-native.manifest.ts",
"import": "./wgpu-native.manifest.ts"
}
},
"files": [
"src",
"examples",
"scripts/fetch-wgpu-native.ts",
"scripts/shim.ts",
"scripts/displace.ts",
"wgpu-native.manifest.ts",
"shim.manifest.ts",
"dawn.manifest.ts",
"README.md",
"LICENSE"
],
"keywords": [
"webgpu",
"wgpu",
"wgpu-native",
"bun",
"bun-ffi",
"ffi",
"gpu",
"graphics",
"compute",
"wgsl",
"headless",
"offscreen-rendering",
"typescript"
],
"engines": {
"bun": ">=1.4.0"
},
"os": [
"win32",
"darwin",
"linux"
],
"cpu": [
"x64",
"arm64"
],
"scripts": {
"fetch": "bun run scripts/fetch-wgpu-native.ts",
"fetch:hashes": "bun run scripts/fetch-wgpu-native.ts --update-hashes",
"typecheck": "tsc --noEmit",
"test": "bun test",
"shim:build": "bun run scripts/shim.ts --build",
"shim:fetch": "bun run scripts/shim.ts --fetch",
"shim:check": "bun run scripts/shim.ts --check",
"test:matrix": "bun run scripts/test-matrix.ts",
"dawn:fetch": "bun run scripts/dawn-fetch.ts",
"dawn:link": "bun run scripts/dawn-link.ts",
"gen:layouts": "bun run scripts/gen-layouts.ts",
"check:layouts": "bun run scripts/gen-layouts.ts --check",
"check:upstream": "bun run scripts/check-upstream.ts",
"upstream:issues": "bun run scripts/upstream-issues.ts",
"derive:aborts:source": "bun run scripts/derive-abort-symbols.ts",
"derive:aborts:probe": "bun run scripts/derive-unimplemented.ts",
"release:check": "bun run scripts/release-platform-packages.ts --check",
"release:stage": "bun run scripts/release-platform-packages.ts",
"release:wire": "bun run scripts/release-platform-packages.ts --wire",
"release:check:dawn": "bun run scripts/release-platform-packages.ts --impl dawn --check",
"release:stage:dawn": "bun run scripts/release-platform-packages.ts --impl dawn"
},
"devDependencies": {
"@types/bun": "^1.3.8",
"typescript": "^5.8.3"
},
"dependencies": {
"@webgpu/types": "^0.1.69"
}
}