-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 908 Bytes
/
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
{
"name": "bolt12-decoder",
"version": "1.0.0",
"description": "Decode BOLT12 Offers",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist --target browser --format esm --minify",
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist --noEmit false",
"build:all": "bun run build && bun run build:types",
"clean": "rm -rf dist",
"prepublishOnly": "bun run clean && bun run build:all"
},
"author": "Aaron Barnard",
"license": "MIT",
"repository": "github:aaronbarnardsound/bolt12-decoder",
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@noble/hashes": "^1.5.0",
"bech32": "^2.0.0",
"buffer": "^6.0.3"
}
}