-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.5 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.5 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
{
"name": "@axobot/cli",
"version": "1.3.0",
"description": "CLI wallet and command router for ZBD agent payments",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zbdpay/axobot-cli.git"
},
"bugs": {
"url": "https://github.com/zbdpay/axobot-cli/issues"
},
"homepage": "https://github.com/zbdpay/axobot-cli#readme",
"keywords": [
"zbd",
"wallet",
"lightning",
"cli"
],
"type": "module",
"bin": {
"zbdw": "dist/cli.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist",
"lint": "npm run typecheck",
"release": "semantic-release",
"release:dry-run": "SEMANTIC_RELEASE_DRY_RUN=true semantic-release --dry-run --no-ci",
"test": "npm run build && node --test test/**/*.test.js",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@axobot/fetch": "^1.0.2",
"commander": "^12.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.6",
"@semantic-release/npm": "^13.1.4",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/node": "^22.13.10",
"conventional-changelog-conventionalcommits": "^8.0.0",
"semantic-release": "^25.0.3",
"typescript": "^5.8.2"
}
}