-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·75 lines (75 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·75 lines (75 loc) · 2.04 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
{
"name": "pex-renderer",
"version": "5.0.0",
"description": "Physically Based Renderer (PBR) and scene graph designed as ECS for PEX: define entities to be rendered as collections of components with their update orchestrated by systems.",
"keywords": [
"pex",
"renderer",
"webgl",
"3d",
"gltf",
"ecs"
],
"homepage": "https://github.com/pex-gl/pex-renderer",
"bugs": "https://github.com/pex-gl/pex-renderer/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/pex-gl/pex-renderer.git"
},
"license": "MIT",
"author": "Marcin Ignac <marcin.ignac@gmail.com> (http://marcinignac.com)",
"contributors": [
"Damien Seguin (https://github.com/dmnsgn)",
"Nick Nikolov (https://github.com/nicknikolov)"
],
"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",
"release:alpha": "snowdev release --release-as minor --prerelease alpha"
},
"dependencies": {
"geom-builder": "^3.1.0",
"hammersley": "^2.0.0",
"pex-cam": "^3.0.1",
"pex-geom": "^3.1.0",
"pex-io": "^3.2.0",
"pex-loaders": "^1.2.1",
"pex-math": "^4.2.0",
"pex-random": "^2.1.2",
"pex-shaders": "^2.0.0-alpha.6",
"typed-array-interleave": "^2.0.1"
},
"devDependencies": {
"@hpcc-js/wasm-graphviz": "^1.21.2",
"@thi.ng/dot": "^2.1.131",
"angle-normals": "^1.0.0",
"cosine-gradient": "^0.3.0",
"es-module-shims": "^2.8.0",
"fit-rect": "^1.0.3",
"geom-center-and-normalize": "^2.2.1",
"geom-parse-obj": "^2.0.0",
"grid-cells": "^2.0.0",
"pex-color": "^2.3.0",
"pex-context": "^4.1.0",
"pex-gui": "^3.3.0",
"primitive-geometry": "^2.11.0"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.5.1",
"snowdev": ">=2.7.x"
},
"snowdev": {
"files": "{*.js,*(systems|components|helpers|loaders|utils)/**/*.js}"
}
}