-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 937 Bytes
/
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
{
"name": "money-lib",
"version": "2.0.0-beta.8",
"description": "TypeScript library to work with money",
"main": "dist/index.js",
"scripts": {
"test": "bun test",
"build": "tsc --project tsconfig.build.json",
"release": "npm run build && npm publish",
"release:beta": "npm run build && npm publish --tag beta"
},
"repository": {
"type": "git",
"url": "git+https://github.com/givehug/money.git"
},
"keywords": [
"javascript",
"money",
"typescript",
"parsing",
"formatting",
"currency",
"calculation",
"monetary",
"arithmetics"
],
"author": "givehug",
"license": "MIT",
"bugs": {
"url": "https://github.com/givehug/money/issues"
},
"homepage": "https://github.com/givehug/money#readme",
"devDependencies": {
"tsx": "3.12.1",
"bun-types": "^1.0.1"
},
"exports": {
"./v1": "./dist/v1.js",
"./utils": "./dist/utils.js"
}
}