-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.26 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.26 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
{
"name": "@algorandfoundation/react-native-passkey-autofill",
"version": "1.0.0-canary.8",
"description": "Passkey AutoFill React Native",
"main": "build/index.js",
"types": "build/index.d.ts",
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"lint": "ESLINT_USE_FLAT_CONFIG=false expo-module lint",
"test": "CI=true expo-module test",
"test:android": "cd example/android && ./gradlew :algorandfoundation-react-native-passkey-autofill:testDebugUnitTest --no-daemon",
"test:android:instrumented": "cd example/android && ./gradlew :algorandfoundation-react-native-passkey-autofill:connectedDebugAndroidTest --no-daemon",
"test:all": "npm run test && npm run test:android",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module",
"open:ios": "xed example/ios",
"open:android": "open -a \"Android Studio\" example/android"
},
"keywords": [
"react-native",
"expo",
"@algorandfoundation/react-native-passkey-autofill",
"ReactNativePasskeyAutofill"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/algorandfoundation/react-native-passkey-autofill.git"
},
"bugs": {
"url": "https://github.com/algorandfoundation/react-native-passkey-autofill/issues"
},
"author": "Algorand Foundation",
"license": "Apache-2.0",
"homepage": "https://github.com/algorandfoundation/react-native-passkey-autofill#readme",
"dependencies": {
"@algorandfoundation/react-native-keystore": "^1.0.0-canary.6"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.test.ts"
]
},
"devDependencies": {
"@expo/config-plugins": "^9.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@types/react": "~19.1.1",
"expo": "^55.0.1",
"expo-module-scripts": "^55.0.2",
"lefthook": "^2.1.4",
"react-native": "0.82.1",
"semantic-release": "^25.0.3"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
}
}