-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
65 lines (65 loc) · 1.74 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
{
"name": "@hyperledger/indy-vdr-react-native",
"version": "0.1.0-dev.13",
"license": "Apache-2.0",
"description": "React Native wrapper for Indy Vdr",
"source": "src/index",
"main": "build/index",
"homepage": "https://github.com/hyperledger/indy-vdr/tree/main/wrappers/javascript/indy-vdr-react-native",
"author": "Hyperledger (https://github.com/hyperledger)",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger/indy-vdr",
"directory": "wrappers/javascript/indy-vdr-react-native"
},
"publishConfig": {
"access": "public"
},
"files": [
"build",
"android/src",
"android/libs",
"android/build.gradle",
"android/CMakeLists.txt",
"android/cpp-adapter.cpp",
"ios/**/*.h",
"ios/**/*.mm",
"ios/Frameworks",
"ios/indyVdr.xcodeproj/project.pbxproj",
"cpp/**/*.cpp",
"cpp/**/*.h",
"indy-vdr.podspec",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"build": "yarn clean && yarn compile",
"clean": "rimraf -rf ./build",
"compile": "tsc -p tsconfig.build.json",
"install": "node-pre-gyp install"
},
"dependencies": {
"@hyperledger/indy-vdr-shared": "0.1.0-dev.13",
"@mapbox/node-pre-gyp": "^1.0.10"
},
"devDependencies": {
"@types/react": "^16.9.19",
"@types/react-native": "^0.67.0",
"prettier": "2.6.2",
"react": "17.0.2",
"react-native": "0.67.2",
"typescript": "~4.9.4"
},
"peerDependencies": {
"react": ">= 16",
"react-native": ">= 0.66.0"
},
"binary": {
"module_name": "indy_vdr",
"module_path": "native",
"remote_path": "v0.4.0-dev.13",
"host": "https://github.com/hyperledger/indy-vdr/releases/download/",
"package_name": "library-ios-android.tar.gz"
}
}