-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.24 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.24 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
{
"name": "gitbank",
"version": "0.1.8",
"description": "CLI for Gitbank — manage Web3 GitVaults, deposit/withdraw/swap tokens on Base L2, run bounty projects, and interact with Gitlawb decentralized git and AI agents from your terminal.",
"type": "module",
"license": "MIT",
"author": "Gitbank <hello@gitbank.io>",
"homepage": "https://gitbank.io",
"repository": {
"type": "git",
"url": "https://github.com/gitbankio/gitbank-cli"
},
"bugs": {
"url": "https://github.com/gitbankio/gitbank-cli/issues"
},
"keywords": [
"gitbank",
"cli",
"web3",
"base-l2",
"ethereum",
"github",
"vault",
"bounty",
"gitlawb",
"did",
"mcp",
"openclaude",
"agent"
],
"files": [
"dist/cli.mjs",
"README.md",
"LICENSE"
],
"bin": {
"gitbank": "./dist/cli.mjs"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "node ./build.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit",
"dev": "node --enable-source-maps ./dist/cli.mjs",
"prepublishOnly": "node ./build.mjs"
},
"devDependencies": {
"@gitbank-agent/sdk": "workspace:*",
"@types/node": "catalog:",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"esbuild": "0.27.3"
}
}