-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·59 lines (59 loc) · 1.27 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
{
"name": "pex-gui",
"version": "3.1.1",
"description": "GUI controls for PEX.",
"keywords": [
"pex",
"gui",
"webgl",
"3d",
"graphics",
"ui",
"controls"
],
"homepage": "https://github.com/pex-gl/pex-gui",
"bugs": "https://github.com/pex-gl/pex-gui/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/pex-gl/pex-gui.git"
},
"license": "MIT",
"author": "Marcin Ignac <[email protected]> (http://marcinignac.com)",
"contributors": [
"Damien Seguin (https://github.com/dmnsgn)"
],
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./index.js"
}
},
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "snowdev build",
"dev": "snowdev dev",
"release": "snowdev release"
},
"dependencies": {
"pex-color": "^2.2.0",
"pex-geom": "^3.0.2",
"pex-math": "^4.1.1"
},
"devDependencies": {
"es-module-shims": "1.10.1",
"pex-cam": "^3.0.0-alpha.1",
"pex-context": "^3.1.2",
"pex-io": "^3.0.2",
"primitive-geometry": "^2.10.1"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.5.1",
"snowdev": ">=2.3.x"
},
"snowdev": {
"files": "{*.js,*(renderers|shaders)/**/*.js}"
}
}