-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.27 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
{
"name": "@validpay/react-native-sdk",
"version": "1.4.0",
"description": "ValidPay verification SDK for React Native — 8 patented protections for document authenticity",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"src/"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "jest --coverage",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": ">=1.19.0",
"react-native": ">=0.70.0"
},
"peerDependenciesMeta": {
"react-native": {
"optional": true
},
"@react-native-async-storage/async-storage": {
"optional": true
}
},
"dependencies": {
"@noble/curves": "^1.6.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"typescript": "^5.4.0"
},
"keywords": [
"validpay",
"verification",
"react-native",
"document",
"encryption",
"aes-256-gcm",
"blind-escrow"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ValidPay-io/validpay-react-native-sdk"
},
"homepage": "https://validpay.com",
"engines": {
"node": ">=18"
}
}