-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.78 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
{
"name": "@enesbaspinar/money",
"version": "3.0.0",
"description": "A comprehensive library for precise monetary calculations and customizable locale-based currency formatting.",
"author": {
"name": "Enes Baspinar",
"email": "[email protected]"
},
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"keywords": [
"money",
"currency",
"price",
"format",
"utilities",
"accounting",
"ecommerce",
"finance",
"javascript",
"typescript",
"locale"
],
"homepage": "https://github.com/baspinarenes/money",
"bugs": {
"url": "https://github.com/baspinarenes/money/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/baspinarenes/money.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsc -b && vite build",
"build:watch": "vite build --watch",
"test": "vitest run",
"test:watch": "vitest watch",
"coverage": "vitest run --coverage",
"preversion": "yarn build",
"postversion": "echo \"Don't forget to push the tags and publish the version.\""
},
"devDependencies": {
"@types/big.js": "^6.2.2",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"terser": "^5.37.0",
"typescript": "~5.6.2",
"vite": "^6.0.5",
"vite-node": "^2.1.8",
"vite-plugin-dts": "^4.4.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"dependencies": {
"big.js": "^6.2.2",
"country-to-currency": "^2.0.2"
},
"peerDependencies": {}
}