-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (72 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (72 loc) · 1.45 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "cashify",
"version": "4.0.0",
"description": "Lightweight currency conversion library, successor of money.js",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"test": "node --test --experimental-test-coverage test.ts",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"prepublishOnly": "pnpm run build",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish"
},
"engines": {
"node": ">=24.18.1"
},
"packageManager": "pnpm@10.34.5",
"license": "MIT",
"repository": "xxczaki/cashify",
"homepage": "https://github.com/xxczaki/cashify",
"keywords": [
"cashify",
"cash",
"moneyjs",
"money.js",
"money",
"conversion",
"exchange",
"currency-exchange",
"exchange-rates",
"open-exchange-rates",
"fixer",
"currencies",
"convert-currency-rates",
"replacement",
"convert-currencies",
"typescript",
"money-conversion"
],
"devDependencies": {
"@biomejs/biome": "^2.5.6",
"@changesets/cli": "^2.31.1",
"@types/node": "^24.13.3",
"big.js": "^7.0.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@types/big.js": "^6.2.2"
},
"peerDependencies": {
"big.js": ">=7.0.1"
},
"peerDependenciesMeta": {
"big.js": {
"optional": true
}
},
"sideEffects": false
}