-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
executable file
·83 lines (83 loc) · 1.9 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
77
78
79
80
81
82
83
{
"name": "dgel",
"version": "0.17.1",
"description": "A WebGPU engine.",
"keywords": [
"webgpu",
"engine",
"3d",
"opengl",
"webgl"
],
"homepage": "https://github.com/dmnsgn/dgel",
"bugs": "https://github.com/dmnsgn/dgel/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/dmnsgn/dgel.git"
},
"funding": [
{
"type": "individual",
"url": "https://paypal.me/dmnsgn"
},
{
"type": "individual",
"url": "https://commerce.coinbase.com/checkout/56cbdf28-e323-48d8-9c98-7019e72c97f3"
}
],
"license": "MIT",
"author": "Damien Seguin (https://github.com/dmnsgn)",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./lib/index.js"
}
},
"main": "lib/index.js",
"module": "lib/index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "npx snowdev build",
"clean": "rm -rf lib && rm -rf docs",
"dev": "npx snowdev dev"
},
"dependencies": {
"gl-matrix": "^3.4.3",
"tslib": "^2.6.3"
},
"devDependencies": {
"@types/gl-matrix": "^2.4.5",
"@webgpu/glslang": "0.0.15",
"@webgpu/types": "^0.1.43",
"cameras": "^3.1.1",
"canvas-record": "^5.0.1",
"es-module-shims": "^1.10.0",
"primitive-geometry": "^2.10.1",
"seedrandom": "^3.0.5",
"tweakpane": "^4.0.3",
"typed-array-concat": "^3.0.0",
"typed-array-interleave": "^2.0.0",
"typescript": "^5.5.2"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.5.1",
"snowdev": ">=2.1.x"
},
"snowdev": {
"dependencies": [
"@webgpu/glslang/dist/web-devel/glslang.js",
"@webgpu/glslang/dist/web-devel/glslang.wasm",
"es-module-shims",
"typed-array-concat",
"canvas-record",
"cameras",
"gl-matrix",
"typed-array-interleave",
"primitive-geometry",
"seedrandom",
"tweakpane"
]
}
}