-
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) · 903 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 903 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": "@ambosstech/lnd-macaroon",
"version": "0.0.9",
"description": "A simple NPM package which helps decoding LND macaroons",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/AmbossTech/lnd-macaroon.git"
},
"scripts": {
"prebuild": "rimraf dist",
"postbuild": "copyfiles -f ./src/proto/id* ./dist/proto",
"build": "tsc",
"decode": "ts-node src/cli.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Amboss Technologies Inc.",
"license": "AGPL-3.0-only",
"devDependencies": {
"@types/lodash": "^4.17.20",
"@types/node": "^24.3.0",
"copyfiles": "^2.4.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"dependencies": {
"google-protobuf": "^4.0.0",
"lodash": "^4.17.21",
"macaroon": "^3.0.4"
}
}