-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.24 KB
/
package.json
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@bnonni/assets",
"version": "0.1.0",
"type": "module",
"description": "Taproot assets client methods similar @alexbosworth/lightning",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./browser": {
"types": "./dist/types/index.d.ts",
"import": "./dist/browser/browser.mjs",
"require": "./dist/browser/browser.js"
}
},
"author": {
"name": "Bryan Nonni",
"url": "https://github.com/bnonni"
},
"contributors": [
{
"name": "Bryan Nonni",
"url": "https://github.com/bnonni"
}
],
"homepage": "https://github.com/bnonni/assets",
"bugs": {
"url": "https://github.com/bnonni/assets/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/bnonni/assets.git"
},
"license": "MIT",
"files": [
"dist",
"src"
],
"keywords": [
"grpc",
"lightning-network",
"taproot-assets",
"tapd"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/chai": "^5.0.1",
"@types/chai-as-promised": "^8.0.1",
"@types/cors": "^2.8.17",
"@types/debug": "^4.1.12",
"@types/eslint": "^9.6.1",
"@types/express": "^5.0.0",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.5",
"@types/npm": "^7.19.3",
"@types/tar-stream": "^3.1.3",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"c8": "^10.1.3",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.1",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"eslint-plugin-mocha": "^10.5.0",
"globals": "^15.14.0",
"marked": "^15.0.5",
"mocha": "^11.0.1",
"mocha-junit-reporter": "^2.2.1",
"node-stdlib-browser": "^1.3.0",
"nodemon": "^3.1.9",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
},
"scripts": {
"clean": "rimraf dist coverage tests/compiled",
"wipe": "rimraf node_modules package-lock.json",
"build": "pnpm clean && pnpm build:esm && pnpm build:cjs",
"build:esm": "rimraf dist/esm dist/types && pnpm tsc -p tsconfig.json",
"build:cjs": "rimraf dist/cjs && tsc -p tsconfig.cjs.json && echo '{\"type\": \"commonjs\"}' > ./dist/cjs/package.json",
"build:tests:node": "rimraf tests/compiled && pnpm tsc -p tests/tsconfig.json",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"test:node": "pnpm build:tests:node && pnpm c8 mocha"
},
"dependencies": {
"@grpc/grpc-js": "^1.12.5",
"@grpc/proto-loader": "^0.7.13",
"@types/async": "^3.2.24",
"@types/request": "^2.48.12",
"@types/ws": "^8.5.13",
"async": "^3.2.6",
"asyncjs-util": "^1.2.12",
"bitcoinjs-lib": "^6.1.7",
"bn.js": "^5.2.1",
"bolt07": "^1.9.4",
"bolt09": "^2.1.0",
"ecpair": "3.0.0-rc.0",
"invoices": "^3.0.0",
"lightning": "^10.22.3",
"psbt": "^3.0.0",
"scclogger": "^0.1.2",
"tiny-secp256k1": "^2.2.3",
"type-fest": "^4.31.0"
}
}