-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.29 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
{
"name": "vector2",
"title": "Vector2",
"version": "0.0.1",
"homepage": "https://github.com/rawify/Vector2.js",
"bugs": "https://github.com/rawify/Vector2.js/issues",
"description": "A JavaScript 2D Vector library",
"keywords": [
"math",
"linear algebra",
"vector",
"2d",
"outer",
"inner",
"dot",
"hadamard",
"schur",
"product",
"lerp",
"projection",
"reflection"
],
"private": false,
"main": "./dist/vector2.js",
"module": "./dist/vector2.mjs",
"types": "./vector2.d.ts",
"browser": "./dist/vector2.min.js",
"unpkg": "./dist/vector2.min.js",
"readmeFilename": "README.md",
"exports": {
".": {
"types": "./vector2.d.ts",
"require": "./dist/vector2.js",
"import": "./dist/vector2.mjs"
}
},
"repository": {
"type": "git",
"url": "[email protected]:rawify/Vector2.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 Vector2"
},
"devDependencies": {
"crude-build": "^0.1.2"
}
}