-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
73 lines (73 loc) · 1.82 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
{
"name": "pex-context",
"version": "3.1.2",
"description": "Modern WebGL state wrapper for PEX: allocate GPU resources (textures, buffers), setup state pipelines and passes, and combine them into commands.",
"keywords": [
"pex",
"context",
"webgl",
"3d",
"buffer",
"framebuffer",
"pass",
"pipeline",
"program",
"query",
"renderbuffer",
"texture"
],
"homepage": "https://github.com/pex-gl/pex-context",
"bugs": "https://github.com/pex-gl/pex-context/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/pex-gl/pex-context.git"
},
"license": "MIT",
"author": "Henryk Wollik <hwollik@hotmail.com> (http://henrykwollik.com)",
"contributors": [
"Damien Seguin (https://github.com/dmnsgn)",
"Marcin Ignac <marcin.ignac@gmail.com> (http://marcinignac.com)"
],
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./index.js"
}
},
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "snowdev build",
"deploy": "snowdev deploy",
"dev": "snowdev dev",
"release": "snowdev release"
},
"dependencies": {
"pex-gl": "^3.0.2"
},
"devDependencies": {
"baboon-image-uri": "^1.0.1",
"bunny": "^1.0.1",
"es-module-shims": "^1.10.0",
"geom-center-and-normalize": "^2.2.0",
"geom-merge": "^3.0.0",
"geom-normals": "^2.1.0",
"geom-split-vertices": "^2.1.0",
"grid-cells": "^2.0.0",
"normals": "^1.1.0",
"pex-cam": "^3.0.0-alpha.1",
"pex-color": "^2.1.1",
"pex-gui": "^3.0.1",
"pex-io": "^3.0.2",
"pex-math": "^4.1.1",
"pex-random": "^2.1.2",
"primitive-geometry": "^2.10.1",
"typed-array-concat": "^3.0.1"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.5.1",
"snowdev": ">=2.2.x"
}
}