forked from peterferguson/react-native-passkeys
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.08 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.08 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
{
"name": "@officialunofficial/react-native-passkeys",
"version": "0.4.2",
"description": "A library for using (webauthn) passkeys on iOS, Android & web with a single api",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "expo-module build",
"check-exports": "attw --pack .",
"ci": "pnpm run lint && pnpm run format:check && pnpm run build && pnpm run check-exports",
"clean": "expo-module clean",
"expo-module": "expo-module",
"format": "oxfmt --write ./src",
"format:check": "oxfmt --check ./src",
"lint": "oxlint ./src",
"lint:fix": "oxlint --fix ./src",
"open:ios": "open -a \"Xcode\" example/ios",
"open:android": "open -a \"Android Studio\" example/android",
"test": "expo-module test"
},
"keywords": [
"react-native",
"auth",
"webauthn",
"passkeys",
"expo",
"rn-passkeys",
"react-native-passkeys",
"ReactNativePasskeys"
],
"repository": {
"type": "git",
"url": "git+https://github.com/officialunofficial/react-native-passkeys.git"
},
"bugs": {
"url": "https://github.com/officialunofficial/react-native-passkeys/issues"
},
"author": "Peter Ferguson <peterferguson95@gmail.com> (https://github.com/peterferguson)",
"contributors": [
"officialunofficial <https://github.com/officialunofficial>"
],
"license": "MIT",
"homepage": "https://github.com/officialunofficial/react-native-passkeys#readme",
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"build",
"src",
"android/build.gradle",
"android/src/main",
"ios",
"expo-module.config.json",
"CHANGELOG.md"
],
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@changesets/cli": "^2.26.2",
"@simplewebauthn/typescript-types": "^8.0.0",
"@types/react": "^18.0.25",
"expo-module-scripts": "^3.4.1",
"expo-modules-core": "^1.11.9",
"oxfmt": "^0.45.0",
"oxlint": "^1.60.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"expo": ">=53.0.0",
"react": "*",
"react-native": ">=0.71.0"
}
}