forked from thi-ng/umbrella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 3.73 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@thi.ng/vectors",
"version": "4.8.1",
"description": "Optimized 2d/3d/4d and arbitrary length vector operations",
"module": "./index.js",
"main": "./lib/index.js",
"umd:main": "./lib/index.umd.js",
"typings": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/thi-ng/umbrella.git"
},
"homepage": "https://github.com/thi-ng/umbrella/tree/develop/packages/vectors#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/postspectacular"
},
{
"type": "patreon",
"url": "https://patreon.com/thing_umbrella"
}
],
"author": "Karsten Schmidt <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"build": "yarn clean && yarn build:es6 && node ../../scripts/bundle-module",
"build:release": "yarn clean && yarn build:es6 && node ../../scripts/bundle-module all",
"build:es6": "tsc --declaration",
"build:test": "rimraf build && tsc -p test/tsconfig.json",
"build:check": "tsc --isolatedModules --noEmit",
"test": "mocha test",
"cover": "nyc mocha test && nyc report --reporter=lcov",
"clean": "rimraf *.js *.d.ts *.map .nyc_output build coverage doc lib internal",
"doc:readme": "ts-node -P ../../tools/tsconfig.json ../../tools/src/readme.ts",
"doc": "node_modules/.bin/typedoc --mode modules --out doc --theme ../../tools/doc/typedoc-theme src",
"doc:ae": "mkdir -p .ae/doc .ae/temp && node_modules/.bin/api-extractor run --local --verbose",
"pub": "yarn build:release && yarn publish --access public"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@microsoft/api-extractor": "^7.12.0",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"ts-node": "^9.0.0",
"typedoc": "^0.19.2",
"typescript": "^4.1.2"
},
"dependencies": {
"@thi.ng/api": "^6.13.3",
"@thi.ng/binary": "^2.0.18",
"@thi.ng/checks": "^2.7.11",
"@thi.ng/equiv": "^1.0.33",
"@thi.ng/errors": "^1.2.24",
"@thi.ng/math": "^2.2.1",
"@thi.ng/memoize": "^2.1.5",
"@thi.ng/random": "^2.1.1",
"@thi.ng/transducers": "^7.5.1"
},
"files": [
"*.js",
"*.d.ts",
"lib",
"internal"
],
"keywords": [
"2d",
"3d",
"4d",
"acceleration",
"array",
"bezier",
"binary",
"cartesian",
"codegen",
"comparator",
"cubic",
"data-oriented",
"datastructure",
"distance",
"dotproduct",
"equality",
"geometry",
"glsl",
"graphics",
"hash",
"heading",
"homogeneous",
"interpolation",
"interval",
"manhattan",
"math",
"memory-mapped",
"nd",
"polar",
"polymorphic",
"projection",
"quadratic",
"random",
"reflect",
"refract",
"rotation",
"smoothstep",
"step",
"typescript",
"value-semantics",
"wasm",
"webgl"
],
"publishConfig": {
"access": "public"
},
"browser": {
"process": false,
"setTimeout": false
},
"sideEffects": false,
"thi.ng": {
"related": [
"color",
"ecs",
"geom",
"hdom-canvas",
"imgui",
"matrices",
"soa",
"shader-ast-js",
"vector-pools",
"webgl"
],
"year": 2015
}
}