-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.23 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
{
"name": "nona-lib",
"version": "1.3.0",
"description": "TypeScript library to simplify interactions with the Nano currency node.",
"main": "dist/nona.js",
"types": "./dist/nona.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"lint": "eslint .",
"test": "jest",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/tgerboui/nona-lib.git"
},
"keywords": [
"nano",
"cryptocurrency",
"typescript",
"node",
"library"
],
"author": "Thomas Gerbouin",
"license": "MIT",
"type": "module",
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/preset-typescript": "^7.24.1",
"@eslint/js": "^9.1.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@types/ws": "^8.5.10",
"babel-jest": "^29.7.0",
"eslint": "^9.1.0",
"eslint-plugin-max-params-no-constructor": "^0.0.4",
"jest": "^29.7.0",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.0"
},
"dependencies": {
"axios": "^1.6.8",
"bignumber.js": "^9.1.2",
"nanocurrency": "^2.5.0",
"rxjs": "^7.8.1",
"ws": "^8.16.0",
"zod": "^3.22.4"
}
}