This repository was archived by the owner on Feb 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.62 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.62 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
{
"name": "@synonymdev/react-native-ldk",
"title": "React Native LDK",
"version": "0.0.77",
"description": "React Native wrapper for LDK",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"README.md",
"android",
"ios",
"react-native-ldk.podspec",
"dist"
],
"keywords": [
"javascript",
"bitcoin",
"lightning",
"ldk"
],
"scripts": {
"build": "rm -rf dist && mkdir dist/ && tsc -p ./src",
"watch": "yarn run build -- -w",
"lint:check": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix --ext .js,.jsx,.ts,.tsx",
"prepublish": "yarn lint:fix && yarn run build && npm --no-git-tag-version version patch",
"dev:save-ios-updates": "cp ../example/node_modules/@synonymdev/react-native-ldk/ios/*.{m,swift,h} ./ios && cp ../example/node_modules/@synonymdev/react-native-ldk/ios/Classes/*.swift ./ios/Classes/",
"dev:save-android-updates": "cp ../example/node_modules/@synonymdev/react-native-ldk/android/src/main/java/com/reactnativeldk/*.kt ./android/src/main/java/com/reactnativeldk/ && cp ../example/node_modules/@synonymdev/react-native-ldk/android/src/main/java/com/reactnativeldk/classes/*.kt ./android/src/main/java/com/reactnativeldk/classes/ && cp ../example/node_modules/@synonymdev/react-native-ldk/android/build.gradle ./android/",
"dev:update-example-dist": "yarn build && cp -R dist ../example/node_modules/@synonymdev/react-native-ldk",
"dev:example": "yarn dev:save-ios-updates && yarn dev:save-android-updates && yarn dev:update-example-dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/synonymdev/react-native-ldk.git",
"baseUrl": "https://github.com/synonymdev/react-native-ldk"
},
"author": "synonymdev",
"license": "MIT",
"licenseFilename": "LICENSE",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@react-native-community/eslint-config": "^2.0.0",
"@types/node": "^17.0.31",
"@types/react-native": "0.62.13",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"prettier": "^2.6.2",
"react": "^16.9.0",
"typescript": "^4.2.4"
},
"dependencies": {
"bitcoinjs-lib": "^6.0.2"
},
"bugs": {
"url": "https://github.com/synonymdev/react-native-ldk/issues"
},
"homepage": "https://github.com/synonymdev/react-native-ldk#readme"
}