-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
{
"name": "minimal-gpu",
"version": "1.0.3",
"type": "module",
"devDependencies": {
"@webgpu/types": "^0.1.51",
"typescript": "~5.6.2",
"vite": "^5.4.10"
},
"files": [
"dist/*",
"src/*"
],
"main": "./src/index.js",
"exports": "./src/index.js",
"description": "Minimal is thin layer of abstraction on top of WebGPU with the purpose of making Shader Programming, GPU Simulations and Parallel Programming much easier.",
"dependencies": {
"esbuild": "^0.21.5",
"nanoid": "^3.3.7",
"picocolors": "^1.1.1",
"postcss": "^8.4.47",
"rollup": "^4.24.4",
"source-map-js": "^1.2.1",
"vite": "^5.4.10"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/visionary-3d/minimal.git"
},
"keywords": [
"webgpu",
"minimal",
"msl",
"wgsl",
"shader",
"webgpu-framework"
],
"author": "arya3d",
"license": "MIT",
"bugs": {
"url": "https://github.com/visionary-3d/minimal/issues"
},
"homepage": "https://github.com/visionary-3d/minimal#readme"
}