-
Notifications
You must be signed in to change notification settings - Fork 448
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 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
{
"name": "@clerk/expo-passkeys",
"version": "1.0.6",
"description": "Passkeys library to be used with Clerk for expo",
"keywords": [
"react-native",
"expo",
"expo-passkey",
"ClerkExpoPasskeys",
"clerk",
"passkeys"
],
"homepage": "https://clerk.com/",
"bugs": {
"url": "https://github.com/clerk/javascript/issues"
},
"repository": "git+https://github.com/clerk/javascript.git",
"license": "MIT",
"author": "Clerk",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"build:declarations": "tsc -p tsconfig.declarations.json",
"clean": "rimraf ./dist",
"dev": "tsup --watch",
"dev:pub": "pnpm dev -- --env.publish",
"format": "node ../../scripts/format-package.mjs",
"format:check": "node ../../scripts/format-package.mjs --check",
"lint": "eslint src",
"open:android": "open -a \"Android Studio\" example/android",
"open:ios": "xed example/ios"
},
"dependencies": {
"@clerk/shared": "workspace:^"
},
"devDependencies": {
"expo": "~52.0.47"
},
"peerDependencies": {
"expo": ">=53 <55",
"react": "catalog:peer-react",
"react-native": "*"
}
}