-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.72 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.72 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@naviary/bigdecimal",
"version": "1.0.1",
"description": "High-performance arbitrary-precision decimal arithmetic for JavaScript.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest --watch",
"lint": "eslint src tests",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"typecheck": "tsc --noEmit",
"bench": "tsx benchmarks/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Naviary2/BigDecimal.git"
},
"keywords": [
"bigint",
"bigfloat",
"bigdecimal",
"binary",
"arbitrary-precision",
"float",
"floating-point",
"fixed-point",
"precision",
"optimized",
"high-performance",
"performance",
"naviary",
"infinite-chess",
"infinitechess",
"ic"
],
"author": "Naviary",
"license": "MIT",
"bugs": {
"url": "https://github.com/Naviary2/BigDecimal/issues"
},
"homepage": "https://github.com/Naviary2/BigDecimal#readme",
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.39.1",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"bignumber.js": "^9.3.1",
"decimal.js": "^10.6.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"mitata": "^1.0.34",
"prettier": "^3.7.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^3.2.3"
}
}