-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.4 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
{
"name": "@tamtamchik/exchanger",
"version": "3.0.0",
"description": "Simple and free npm library to get realtime currency exchange rates.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./src/index.ts",
"author": "Yuri Tkachenko <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/tamtamchik/exchanger#readme",
"bugs": {
"url": "https://github.com/tamtamchik/exchanger/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/tamtamchik/exchanger.git"
},
"keywords": [
"currency",
"exchange",
"rate",
"currency exchange",
"currency exchange rate",
"currency conversion",
"currency conversion rate",
"currency converter",
"currency converter rate"
],
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.7.5",
"jest": "^29.7.0",
"prettier": "3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18.0.0"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./src/index.ts"
}
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --clean",
"dev": "npm run build -- --watch src",
"prepublishOnly": "npm run build",
"test": "jest",
"coverage": "jest --coverage"
}
}