-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.11 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.11 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
{
"name": "@leodeslf/vec.js",
"version": "3.1.3",
"author": "Leonardo de S. Leal F. <hello@leodeslf.com> (https://leodeslf.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/leodeslf/vec.js.git"
},
"main": "./index.js",
"devDependencies": {
"@types/bun": "^1.1.0"
},
"exports": {
".": {
"import": {
"default": "./index.js",
"types": "./index.d.ts"
},
"require": null
}
},
"bugs": {
"url": "https://github.com/leodeslf/vec.js/issues"
},
"description": "JavaScript vector library",
"engines": {
"node": ">=8.0.0"
},
"homepage": "https://github.com/leodeslf/vec.js#readme",
"jsdelivr": "./index.min.js",
"keywords": [
"javascript",
"math",
"geometry",
"vector",
"linear-algebra"
],
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"scripts": {
"minify": "bun build index.js --outfile index.min.js --minify --format esm",
"test": "bun test --bail"
},
"type": "module",
"types": "./index.d.ts",
"unpkg": "./index.min.js"
}