-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.29 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.29 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@bithomp/xrpl-api",
"version": "3.7.31",
"description": "A Bithomp JavaScript/TypeScript library for interacting with the XRP Ledger",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Bithomp AB",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Bithomp/xrpl-api.git"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"xrpl",
"rippled",
"clio",
"xrp",
"nftoken",
"mptoken",
"unl",
"bithomp",
"xahau",
"xahaud",
"xah",
"hooks",
"ws"
],
"funding": {
"type": "individual",
"url": "https://bithomp.com/donate"
},
"bugs": {
"url": "https://github.com/Bithomp/xrpl-api/issues"
},
"homepage": "https://github.com/Bithomp/xrpl-api#readme",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*"
],
"dependencies": {
"@noble/ed25519": "^3.0.0",
"@noble/hashes": "^2.0.1",
"@noble/secp256k1": "^3.0.0",
"axios": "^1.13.5",
"base-x": "^5.0.1",
"bignumber.js": "^9.3.1",
"lodash": "^4.17.23",
"ripple-address-codec": "5.0.0",
"ripple-binary-codec": "2.7.0",
"ripple-keypairs": "2.0.0",
"xrpl": "4.6.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@types/chai": "^5.2.3",
"@types/chai-as-promised": "^8.0.2",
"@types/lodash": "^4.17.23",
"@types/mocha": "^10.0.10",
"@types/nconf": "^0.10.7",
"@types/node": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"chai": "^6.2.2",
"chai-as-promised": "^8.0.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-chai-friendly": "^1.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-promise": "^7.2.1",
"mocha": "^11.7.5",
"nconf": "^0.13.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}