forked from jamaljsr/tapd-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"name": "@lightningpolar/tapd-api",
"version": "0.6.0-alpha.rc2",
"description": "Bitcoin Taproot Assets Protocol API client for Lightning Labs tapd daemon",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"config": {
"tapd_release_tag": "v0.6.0-rc2",
"lnd_release_tag": "v0.19.0-beta"
},
"files": [
"dist",
"package.json",
"protos",
"README.md"
],
"scripts": {
"push": "tsc && npm publish --access public",
"build": "tsc",
"generate:clean": "rm -rf ./src/types",
"generate:protos": "sh ./scripts/update_protos.sh ${npm_package_config_tapd_release_tag} ${npm_package_config_lnd_release_tag}",
"generate:types": "sh ./scripts/gen_types.sh",
"generate:index": "node ./scripts/generateTypesIndex.js",
"generate": "npm run generate:clean && npm run generate:protos && npm run generate:types && npm run generate:index"
},
"author": {
"name": "Ricardo Alonzo"
},
"contributors": [
{
"name": "Jamal James",
"url": "https://github.com/jamaljsr"
}
],
"license": "MIT",
"dependencies": {
"@grpc/grpc-js": "^1.12.2",
"@grpc/proto-loader": "0.7.13"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamaljsr/tapd-api.git"
},
"devDependencies": {
"typescript": "4.8.4"
}
}