-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 849 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 849 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": "@hodlone/taro-api",
"version": "0.1.2",
"description": "Bitcoin Taro API client for lightning labs Taro daemon",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json",
"protos",
"README.md"
],
"scripts": {
"publish": "tsc && npm publish --access public",
"build": "tsc",
"generate:types": "./node_modules/.bin/proto-loader-gen-types --longs=String --enums=String --defaults --oneofs --grpcLib=@grpc/grpc-js --outDir=./src/types/ protos/*.proto"
},
"author": {
"name": "Ricardo Alonzo"
},
"license": "MIT",
"dependencies": {
"@grpc/grpc-js": "1.7.2",
"@grpc/proto-loader": "0.7.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hodlone/taro-api.git"
},
"devDependencies": {
"typescript": "4.8.4"
}
}