-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.74 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.74 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@rawify/vector2",
"title": "Vector2",
"version": "0.0.6",
"description": "The RAW JavaScript 2D Vector library",
"homepage": "https://github.com/rawify/Vector2.js",
"bugs": "https://github.com/rawify/Vector2.js/issues",
"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",
"browser": "./dist/vector2.min.js",
"unpkg": "./dist/vector2.min.js",
"types": "./vector2.d.ts",
"exports": {
".": {
"import": {
"types": "./vector2.d.mts",
"default": "./dist/vector2.mjs"
},
"require": {
"types": "./vector2.d.ts",
"default": "./dist/vector2.js"
},
"browser": {
"types": "./vector2.d.ts",
"default": "./dist/vector2.min.js"
},
"default": {
"types": "./vector2.d.ts",
"default": "./dist/vector2.js"
}
},
"./package.json": "./package.json"
},
"typesVersions": {
"<4.7": {
"*": [
"vector2.d.ts"
]
}
},
"sideEffects": false,
"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": "mocha tests/*.js",
"build": "crude-build Vector2"
},
"devDependencies": {
"chai": "^5.2.1",
"crude-build": "^0.1.2",
"mocha": "^11.7.1"
}
}