-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.32 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@bitcoinerlab/bitbox-react-native",
"description": "React Native native BitBox client provider for mobile Bitcoin apps.",
"homepage": "https://github.com/bitcoinerlab/bitbox-react-native",
"version": "0.1.0",
"author": "Jose-Luis Landabaso",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bitcoinerlab/bitbox-react-native.git"
},
"keywords": [
"bitcoin",
"bitbox",
"bitbox02",
"bitbox-nova",
"hardware-wallet",
"react-native",
"expo",
"bluetooth",
"usb",
"psbt"
],
"bugs": {
"url": "https://github.com/bitcoinerlab/bitbox-react-native/issues"
},
"engines": {
"node": ">=20.19.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./app.plugin": "./app.plugin.js"
},
"prettier": "@bitcoinerlab/configs/prettierConfig.json",
"eslintConfig": {
"extends": "./node_modules/@bitcoinerlab/configs/eslintConfig"
},
"scripts": {
"webdocs": "typedoc --options ./node_modules/@bitcoinerlab/configs/webtypedoc.json",
"docs": "typedoc --options ./node_modules/@bitcoinerlab/configs/typedoc.json",
"build:src": "tsc --project ./node_modules/@bitcoinerlab/configs/tsconfig.src.json",
"build": "npm run build:src",
"native:go:build": "sh native/go/build-gomobile.sh",
"native:go:test": "cd native/go && go test ./...",
"lint": "./node_modules/@bitcoinerlab/configs/scripts/lint.sh",
"format:check": "prettier --check \"src/**/*.ts\" \"docs/**/*.md\" \"*.md\"",
"format": "prettier --write \"src/**/*.ts\" \"docs/**/*.md\" \"*.md\"",
"test": "npm run lint && npm run build",
"prepublishOnly": "rm -rf dist/ && npm test"
},
"files": [
"dist",
"BitcoinerlabBitBoxReactNative.podspec",
"app.plugin.js",
"expo-module.config.json",
"android",
"ios",
"native/go/*.go",
"native/go/build-gomobile.sh",
"native/go/go.mod",
"native/go/go.sum",
"native/go/README.md",
"docs",
"README.md"
],
"peerDependencies": {
"expo-modules-core": ">=2.0.0",
"react-native": ">=0.76.0"
},
"peerDependenciesMeta": {
"expo-modules-core": {
"optional": true
}
},
"devDependencies": {
"@bitcoinerlab/configs": "^2.0.0"
}
}