forked from gzuuus/nutoff-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 811 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 811 Bytes
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
{
"name": "nutoff-wallet",
"module": "src/index.ts",
"type": "module",
"private": true,
"bin": {
"cashu-mcp-server": "./src/index.ts"
},
"scripts": {
"build": "bun build src/index.ts --outdir dist --target bun",
"dev": "bun run src/index.ts",
"start": "bun run src/index.ts",
"test": "bun test",
"format": "bun run prettier --write src"
},
"devDependencies": {
"@types/bun": "latest",
"prettier": "^3.6.2"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"@cashu/cashu-ts": "^3.0.2",
"@contextvm/sdk": "^0.1.37",
"@modelcontextprotocol/sdk": "^1.20.2",
"@scure/bip39": "^2.0.1",
"coco-cashu-core": "^1.0.0-rc.17",
"coco-cashu-sqlite3": "^1.0.0-rc.17",
"sqlite3": "^5.1.7",
"zod": "^3.25.76"
}
}