-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 1.75 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "xyzw",
"description": "A functional, fast, comprehensive and dependencyless typescript vector algebra library",
"version": "2.8.0",
"license": "MIT",
"keywords": [
"algebra",
"vector",
"matrix",
"rotation",
"shear",
"translation",
"transform",
"perspective",
"orthographic",
"projection",
"reflection",
"2d",
"3d",
"outer",
"inner",
"cross",
"dot",
"hadamard",
"schur",
"product",
"concatenation",
"barycentric",
"coordinates",
"unit",
"quaternion",
"lerp",
"slerp",
"determinant",
"inverse",
"transpose",
"conjugate",
"gauss-jordan",
"identity",
"azimuth",
"phi",
"complex",
"real",
"imaginary"
],
"author": {
"name": "chkt",
"email": "ck@chkt.one",
"url": "chkt.one"
},
"repository": {
"url": "https://github.com/chkt/xyzw"
},
"bugs": {
"url": "https://github.com/chkt/xyzw/issues"
},
"engines": {
"node": ">=14.0"
},
"main": "./dist/index.js",
"files": [
"/dist/"
],
"scripts": {
"prepublishOnly": "npm outdated && npm test && npm run lint && npm build && npm run doc",
"lint": "eslint source/**/*.ts test/**/*.ts test/*.ts",
"test": "mocha -r ts-node/register test/*.ts --exclude test/perf.ts",
"doc": "typedoc --plugin ../typedoc-theme-md --theme md --readme ./module.md --out ./.docs source/*.ts && cp ./.docs/modules.md ./readme.md",
"build": "rm -rf ./dist/* && ./node_modules/typescript/bin/tsc"
},
"dependencies": {},
"devDependencies": {
"@chkt/eslint-config": "^1.0.8",
"@types/mocha": "^10.0",
"@types/node": "^22.10",
"@typescript-eslint/eslint-plugin": "^6.21",
"@typescript-eslint/parser": "^6.21",
"eslint": "^8.57",
"mocha": "^11.0",
"nyc": "^17.1",
"ts-node": "^10.9",
"typedoc": "^0.27",
"typescript": "^5.7"
}
}