-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
48 lines (48 loc) · 1.12 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
{
"name": "dnum",
"version": "2.14.0",
"type": "module",
"license": "MIT",
"author": "Pierre Bertet <[email protected]>",
"description": "Small library for big decimal numbers.",
"keywords": [
"typescript",
"decimal-number",
"big-decimal",
"formatting",
"currency",
"bigint"
],
"homepage": "https://github.com/bpierre/dnum",
"bugs": "https://github.com/bpierre/dnum/issues",
"repository": "github:bpierre/dnum",
"module": "dist/dnum.js",
"main": "dist/dnum.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"lint": "eslint ./src",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "7.3.1",
"@typescript-eslint/parser": "7.3.1",
"@vitest/coverage-c8": "^0.33.0",
"dprint": "^0.45.0",
"eslint": "^8.57.0",
"typescript": "^5.4.3",
"vite": "^5.2.6",
"vite-plugin-dts": "^3.7.3",
"vitest": "^1.4.0"
},
"dependencies": {
"from-exponential": "^1.1.1"
}
}