-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.43 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
{
"name": "@ignromanov/big-decimal",
"version": "0.1.0",
"description": "A precise decimal arithmetic library for JavaScript/TypeScript",
"type": "module",
"main": "./dist/big-decimal.umd.cjs",
"module": "./dist/big-decimal.js",
"types": "./dist/types/index.d.ts",
"typesVersions": {
">=4.0": {
"*": [
"./dist/types/*"
]
}
},
"exports": {
".": {
"import": "./dist/big-decimal.js",
"require": "./dist/big-decimal.umd.cjs",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build:types": "tsc --emitDeclarationOnly",
"build:vite": "vite build",
"build": "pnpm build:types && pnpm build:vite",
"prepublishOnly": "npm run build",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:debug": "vitest --pool=forks --watch"
},
"keywords": [
"decimal",
"arithmetic",
"precision",
"bigdecimal",
"typescript",
"bignumber"
],
"author": "Ignat Romanov",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ignromanov/big-decimal.git"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@vitest/coverage-v8": "^2.1.4",
"@vitest/ui": "^2.1.4",
"terser": "^5.36.0",
"typescript": "~5.6.3",
"vite": "^5.4.10",
"vitest": "^2.1.4"
},
"packageManager": "[email protected]"
}