-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.66 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
{
"name": "pex-math",
"version": "4.1.1",
"description": "Array-based vector, quaternion and matrix math with utils for PEX.",
"keywords": [
"pex",
"math",
"webgl",
"3d",
"vector",
"quaternion",
"matrix",
"vec2",
"vec3",
"vec4",
"quat",
"mat2x3",
"mat3",
"mat4"
],
"homepage": "https://github.com/pex-gl/pex-math",
"bugs": "https://github.com/pex-gl/pex-math/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/pex-gl/pex-math.git"
},
"license": "MIT",
"author": "Henryk Wollik <[email protected]> (http://henrykwollik.com)",
"contributors": [
"Marcin Ignac <[email protected]> (http://marcinignac.com)",
"Damien Seguin (https://github.com/dmnsgn)",
"Nick Nikolov (https://github.com/nicknikolov)",
"Simon Harris (https://github.com/simonharrisco)"
],
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./index.js"
}
},
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"benchmark": "node benchmark/bench.js && node benchmark/bench-pex.js > pex-math && node benchmark/bench-gl-matrix.js > gl-matrix && nanobench-compare gl-matrix pex-math && rm pex-math && rm gl-matrix",
"build": "npx snowdev build",
"dev": "npx snowdev dev",
"release": "npx snowdev release",
"test": "node --test --experimental-test-coverage",
"test:watch": "node --test --watch"
},
"devDependencies": {
"gl-matrix": "^3.4.3",
"nanobench": "^2.1.1"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.5.1",
"snowdev": ">=2.2.x"
},
"snowdev": {
"dependencies": []
}
}