-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.25 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
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@salatech/auth-toolkit",
"version": "0.1.0",
"description": "Unified OTP, deep-link, and biometric auth toolkit for React Native and Expo apps",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./core": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.mjs",
"require": "./dist/core/index.js"
},
"./otp": {
"types": "./dist/otp/index.d.ts",
"import": "./dist/otp/index.mjs",
"require": "./dist/otp/index.js"
},
"./deep-link": {
"types": "./dist/deep-link/index.d.ts",
"import": "./dist/deep-link/index.mjs",
"require": "./dist/deep-link/index.js"
},
"./biometric": {
"types": "./dist/biometric/index.d.ts",
"import": "./dist/biometric/index.mjs",
"require": "./dist/biometric/index.js"
},
"./hooks": {
"types": "./dist/hooks/index.d.ts",
"import": "./dist/hooks/index.mjs",
"require": "./dist/hooks/index.js"
},
"./ui": {
"types": "./dist/ui/index.d.ts",
"import": "./dist/ui/index.mjs",
"require": "./dist/ui/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"keywords": [
"react-native",
"expo",
"auth",
"otp",
"deep-link",
"magic-link",
"biometric",
"faceid",
"fingerprint"
],
"author": "Salatech",
"license": "MIT",
"devDependencies": {
"@testing-library/react": "^14.2.0",
"@types/node": "^20.11.0",
"@types/react": "^18.2.0",
"jsdom": "^24.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^8.0.2",
"typescript": "^5.4.0",
"vitest": "^1.5.0"
},
"peerDependencies": {
"expo-linking": ">=6.0.0",
"expo-local-authentication": ">=14.0.0",
"react": ">=17.0.0",
"react-native": ">=0.70.0"
},
"peerDependenciesMeta": {
"expo-linking": {
"optional": true
},
"expo-local-authentication": {
"optional": true
},
"react-native": {
"optional": true
}
}
}