-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.84 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.84 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "bitcoin-address-parser",
"version": "1.0.6",
"description": "Parse any Bitcoin address - Bolt11, Bitcoin, LNURL, URI",
"homepage": "https://github.com/blitzwallet/bitcoin-address-validation",
"bugs": {
"url": "https://github.com/blitzwallet/bitcoin-address-validation/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts",
"react-native": "./dist/index.js"
}
},
"files": [
"dist"
],
"type": "module",
"scripts": {
"build": "tsc",
"test": "vitest run",
"check-format": "prettier --check src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"lint": "tsc --noEmit",
"ci": "pnpm run build && pnpm run check-format && pnpm run check-exports && pnpm run lint && pnpm run test",
"local-release": "changeset version && changeset publish"
},
"keywords": [
"address",
"bitcoin",
"btc",
"parser",
"mainnet",
"lnurl",
"bolt11",
"uri"
],
"author": "Blake Kaufman <blake@blitzwalletapp.com> (https://blitzwalletapp.com)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/blitzwallet/bitcoin-address-validation.git"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.3",
"@changesets/cli": "^2.27.12",
"@types/sha.js": "^2.4.0",
"prettier": "^3.5.1",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"dependencies": {
"base58-js": "^3.0.2",
"bech32": "^2.0.0",
"bip21": "^3.0.0",
"bolt11": "^1.4.1",
"js-lnurl": "^0.6.0",
"sha256-uint8array": "^0.10.7"
},
"overrides": {
"lodash": "4.17.23"
},
"directories": {
"test": "tests"
}
}