-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.63 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
{
"name": "@synonymdev/react-native-ldk-api-plugin",
"title": "React Native LDK API Plugin",
"version": "0.0.1",
"description": "React Native API plugin for LDK",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"README.md",
"dist"
],
"keywords": [
"javascript",
"bitcoin",
"lightning",
"ldk"
],
"scripts": {
"build": "rm -rf dist && mkdir dist/ && tsc -p .",
"watch": "yarn run build -- -w",
"lint:check": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix --ext .js,.jsx,.ts,.tsx",
"test": "env mocha --exit -r ts-node/register 'tests/**/*.ts'",
"example": "ts-node example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/synonymdev/react-native-ldk-api-plugin.git",
"baseUrl": "https://github.com/synonymdev/react-native-ldk-api-plugin"
},
"author": "synonymdev",
"license": "MIT",
"licenseFilename": "LICENSE",
"dependencies": {
"bitcoinjs-lib": "^6.0.2"
},
"devDependencies": {
"@synonymdev/result": "^0.0.2",
"@types/chai": "^4.3.7",
"@types/mocha": "^10.0.1",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"chai": "^4.3.10",
"eslint": "^8.51.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^10.2.0",
"prettier": "^2.6.2",
"ts-node": "^10.9.1",
"typescript": "^4.2.4"
},
"bugs": {
"url": "https://github.com/synonymdev/react-native-ldk-api-plugin/issues"
},
"homepage": "https://github.com/synonymdev/react-native-ldk-api-plugin#readme"
}