-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.61 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.61 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
{
"name": "@commonprefix/xrpl-cli",
"version": "0.2.1",
"description": "A Swiss Army knife for interacting with the XRP Ledger from the command line",
"type": "module",
"bin": {
"xrpl": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsx src/index.ts",
"lint": "biome check .",
"lint:md": "markdownlint-cli2 '**/*.md' '#node_modules'",
"lint:md:fix": "markdownlint-cli2 --fix '**/*.md' '#node_modules'",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "vitest run",
"test:e2e": "vitest run --config vitest.config.e2e.ts",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"ci": "pnpm lint && pnpm lint:md && tsc --noEmit && pnpm test && pnpm build && pnpm test:e2e",
"prepublishOnly": "pnpm build"
},
"keywords": [
"xrpl",
"cli"
],
"author": "Nikolaos Kamarinakis",
"repository": {
"type": "git",
"url": "git+https://github.com/commonprefix/xrpl-cli.git"
},
"packageManager": "pnpm@10.30.3",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"dependencies": {
"@scure/bip32": "^2.0.1",
"@scure/bip39": "^2.0.1",
"commander": "^14.0.3",
"ripple-keypairs": "^2.0.0",
"smol-toml": "^1.6.0",
"xrpl": "^4.6.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.5",
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@types/node": "^25.3.3",
"@vitest/coverage-v8": "^4.0.18",
"markdownlint-cli2": "^0.21.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}