-
Notifications
You must be signed in to change notification settings - Fork 725
/
package.json
67 lines (67 loc) · 2.15 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
{
"version": "3.4.0",
"name": "gl-matrix",
"description": "Javascript Matrix and Vector library for High Performance WebGL apps",
"sideEffects": false,
"type": "module",
"main": "./dist/esm/index.js",
"module": "./dist/esm/index.js",
"exports": {
".": "./dist/esm/index.js",
"./common": "./dist/esm/common.js",
"./mat2": "./dist/esm/mat2.js",
"./mat2d": "./dist/esm/mat2d.js",
"./mat3": "./dist/esm/mat3.js",
"./mat4": "./dist/esm/mat4.js",
"./quat": "./dist/esm/quat.js",
"./quat2": "./dist/esm/quat2.js",
"./vec2": "./dist/esm/vec2.js",
"./vec3": "./dist/esm/vec3.js",
"./vec4": "./dist/esm/vec4.js"
},
"types": "./dist/index.d.ts",
"homepage": "http://glmatrix.net",
"license": "MIT",
"bugs": {
"url": "https://github.com/toji/gl-matrix/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/toji/gl-matrix.git"
},
"contributors": [
{
"name": "Brandon Jones",
"email": "[email protected]"
},
{
"name": "Colin MacKenzie IV",
"email": "[email protected]"
}
],
"scripts": {
"test": "mocha --require @babel/register --recursive spec",
"doc": "jsdoc -c jsdoc.config.json",
"update-license-version": "node utils/update-license-version.js",
"build-umd": "rollup -c",
"build-esm": "babel src -d dist/esm",
"build-dts": "tsc --allowJs --declaration --emitDeclarationOnly --module amd --outFile ./dist/index.d.ts ./src/index.js ./src/types.d.ts && node ./utils/bundle-dts.js && tsc --noEmit ./dist/index.d.ts",
"build": "del dist && npm run update-license-version && npm run build-umd && npm run build-esm && npm run build-dts && node ./utils/build.js",
"prepare": "npm run build"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.3",
"@babel/register": "^7.13.16",
"@rollup/plugin-babel": "^5.3.0",
"del-cli": "^3.0.0",
"jsdoc": "^3.6.7",
"mocha": "^8.4.0",
"node-libs-browser": "^2.2.1",
"rollup": "^2.50.5",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.3.2"
}
}