-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
81 lines (81 loc) · 1.4 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
{
"name": "@vicimpa/math",
"version": "0.0.9",
"description": "A collection of mathematical utility functions including operations like clamp, lerp, normalize, and more.",
"repository": "github:vicimpa/vicimpa-library",
"funding": "https://boosty.to/vic_dev",
"homepage": "https://github.com/vicimpa/vicimpa-library/tree/main/packages/math",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"postinstall": "[ -d ./src ] && npm run build || exit 0"
},
"private": false,
"type": "module",
"main": "dist/index.js",
"author": {
"name": "PromiSe####",
"url": "https://github.com/vicimpa",
"email": "[email protected]"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"PI2",
"PI1_2",
"PI1_3",
"rem",
"rems",
"clamp",
"lerp",
"normalize",
"rec",
"precision",
"Math",
"abs",
"acos",
"acosh",
"asin",
"asinh",
"atan",
"atan2",
"atanh",
"cbrt",
"ceil",
"clz32",
"cos",
"cosh",
"E",
"exp",
"expm1",
"floor",
"fround",
"hypot",
"imul",
"log",
"log10",
"log1p",
"log2",
"LN10",
"LN2",
"LOG10E",
"LOG2E",
"max",
"min",
"pow",
"PI",
"random",
"round",
"sign",
"sin",
"sinh",
"sqrt",
"SQRT1_2",
"SQRT2",
"tan",
"tanh",
"trunc"
],
"license": "GPL-3.0-only"
}