-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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
{
"name": "@sporkbytes/money",
"version": "1.1.0",
"description": "A Money datatype to properly handle calculations and avoid floating point errors.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"files": [
"dist/*"
],
"scripts": {
"build": "vitest run && rm -rf ./dist && tsup",
"coverage": "vitest run --coverage",
"prepare": "npm run build",
"start": "tsc -w",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sporkbytes/Money.git"
},
"keywords": [
"money",
"currency",
"floating",
"point"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sporkbytes/Money/issues"
},
"homepage": "https://github.com/sporkbytes/Money#readme",
"dependencies": {
"@sporkbytes/math-utils": "^1.2.0"
},
"devDependencies": {
"@vitest/coverage-istanbul": "^2.1.3",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
}
}