-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.99 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
{
"name": "@synonymdev/react-native-lnurl",
"title": "React Native LNURL",
"version": "0.0.10",
"description": "React Native wrapper for LNURL",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"README.md",
"dist"
],
"keywords": [
"javascript",
"bitcoin",
"lightning"
],
"scripts": {
"build": "rm -rf dist && mkdir dist/ && tsc -p ./src",
"watch": "yarn run build -- -w",
"lint": "yarn run lint:ts",
"lint:ts": "eslint . --ext .ts,.tsx --fix",
"prepublish": "yarn lint && yarn run build && npm --no-git-tag-version version patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/synonymdev/react-native-lnurl.git",
"baseUrl": "https://github.com/synonymdev/react-native-lnurl"
},
"author": "synonymdev",
"license": "MIT",
"licenseFilename": "LICENSE",
"devDependencies": {
"@react-native-community/eslint-config": "^2.0.0",
"@types/react-native": "0.62.13",
"@types/secp256k1": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-standard-with-typescript": "18.0.2",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"prettier": "^2.2.1",
"react": "^16.9.0",
"typescript": "^4.2.4"
},
"dependencies": {
"base64-js": "^1.5.1",
"bip32": "^2.0.6",
"bip39": "^3.1.0",
"fast-sha256": "^1.3.0",
"js-lnurl": "^0.6.0",
"query-string": "^7.1.3",
"readable-stream": "^3.6.0",
"secp256k1": "^4.0.3",
"stream-browserify": "^3.0.0"
},
"bugs": {
"url": "https://github.com/synonymdev/react-native-lnurl/issues"
},
"homepage": "https://github.com/synonymdev/react-native-lnurl#readme",
"directories": {
"example": "example"
}
}