-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1012 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1012 Bytes
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
{
"author": "Yaron Koresh <aharonkoresh1@gmail.com>",
"bugs": {
"url": "https://github.com/YaronKoresh/math/issues"
},
"dependencies": {},
"description": "Implements mathematical operations using String type only, to avoid 32/64 bit integers limits.",
"devDependencies": {
"@swc/helpers": "^0.5.1",
"esbuild": "^0.25.0"
},
"exports": {
".": {
"import": "./dist/bundle.min.mjs",
"require": "./dist/bundle.min.cjs",
"script": "./dist/bundle.min.js"
}
},
"keywords": [
"math",
"safe",
"string",
"logic",
"bigint"
],
"license": {
"type": "MIT",
"url": "https://github.com/YaronKoresh/math/raw/master/LICENSE"
},
"main": "dist/bundle.min.cjs",
"module": "dist/bundle.min.mjs",
"name": "@yaronkoresh/math",
"repository": {
"type": "git",
"url": "https://github.com/YaronKoresh/math.git"
},
"scripts": {
"build": "node ./scripts/build.js",
"test": "node ./scripts/test.js"
},
"type": "module",
"version": "3.5.8"
}