-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.27 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
{
"name": "vector3",
"title": "Vector3",
"version": "0.0.1",
"homepage": "https://github.com/rawify/Vector3.js",
"bugs": "https://github.com/rawify/Vector3.js/issues",
"description": "A JavaScript 3D Vector library",
"keywords": [
"math",
"linear algebra",
"vector",
"3d",
"outer",
"inner",
"cross",
"dot",
"hadamard",
"schur",
"product",
"lerp"
],
"private": false,
"main": "./dist/vector3.js",
"module": "./dist/vector3.mjs",
"types": "./vector3.d.ts",
"browser": "./dist/vector3.min.js",
"unpkg": "./dist/vector3.min.js",
"readmeFilename": "README.md",
"exports": {
".": {
"types": "./vector3.d.ts",
"require": "./dist/vector3.js",
"import": "./dist/vector3.mjs"
}
},
"repository": {
"type": "git",
"url": "[email protected]:rawify/Vector3.js.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/rawify"
},
"author": {
"name": "Robert Eisele",
"email": "[email protected]",
"url": "https://raw.org/"
},
"license": "MIT",
"engines": {
"node": "*"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "crude-build Vector3"
},
"devDependencies": {
"crude-build": "^0.1.2"
}
}