forked from dmnsgn/cameras
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·48 lines (48 loc) · 1.09 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
{
"name": "cameras",
"version": "3.1.1",
"description": "Cameras for 3D rendering.",
"keywords": [
"cameras",
"perspective",
"orthographic",
"3d",
"webgl"
],
"homepage": "https://github.com/dmnsgn/cameras",
"bugs": "https://github.com/dmnsgn/cameras/issues",
"repository": "dmnsgn/cameras",
"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": "./lib/index.js",
"main": "lib/index.js",
"types": "types/index.d.ts",
"dependencies": {
"clamp": "^1.0.1",
"gl-matrix": "^3.3.0",
"normalize-wheel": "^1.0.1"
},
"devDependencies": {
"core-js": "^3.11.1",
"es-module-shims": "^0.10.4",
"primitive-geometry": "^2.0.0",
"regl": "^2.1.0",
"tslib": "^2.2.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=15.0.0",
"npm": ">=7.0.0"
}
}