-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.42 KB
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": "currency-to-float",
"version": "2.0.0",
"description": "Parse any currency",
"repository": {
"type": "git",
"url": "git+https://github.com/mateus4k/currency-to-float.git"
},
"author": "Mateus Sampaio",
"license": "MIT",
"scripts": {
"publish": "bun run build && npm publish --access public",
"build": "bun build.ts",
"lint": "tsc --noEmit -p tsconfig.json && biome lint --diagnostic-level=error --no-errors-on-unmatched ./**/*.ts",
"lint:fix": "biome check --write --unsafe ./**/*.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"benchmark": "bun benchmarks/index.ts"
},
"devDependencies": {
"@biomejs/biome": "~2.3",
"@types/benchmark": "~2.1",
"benchmark": "~2.1",
"bun-types": "~1.3",
"currency.js": "~2.0",
"typescript": "~5.9"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"bugs": {
"url": "https://github.com/mateus4k/currency-to-float/issues"
},
"homepage": "https://github.com/mateus4k/currency-to-float#readme",
"keywords": [
"currency",
"currencies",
"parser",
"money",
"BRL",
"USD",
"EUR",
"AUD",
"JPY",
"GBP",
"NZD",
"HKD",
"SGD",
"DKK"
]
}