-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
58 lines (58 loc) · 1.73 KB
/
package.json
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
{
"name": "react-native-device-activity",
"version": "0.2.3",
"description": "Provides access to Apples DeviceActivity API",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"lint": "expo-module lint",
"pre-push": "npm run typecheck && npm run lint && example/ios/Pods/SwiftLint/swiftlint lint --strict",
"typecheck": "tsc --noEmit",
"test": "expo-module test",
"prepare": "husky",
"prepublishOnly": "expo-module prepublishOnly && tsc",
"expo-module": "expo-module",
"open:ios": "xed example/ios",
"open:android": "open -a \"Android Studio\" example/android"
},
"keywords": [
"react-native",
"expo",
"react-native-device-activity",
"ReactNativeDeviceActivity"
],
"repository": {
"url": "https://github.com/kingstinct/react-native-device-activity"
},
"bugs": {
"url": "https://github.com/kingstinct/react-native-device-activity/issues"
},
"author": "Robert Herber <robert@kingstinct.com> (https://github.com/robertherber)",
"license": "MIT",
"homepage": "https://github.com/kingstinct/react-native-device-activity#readme",
"dependencies": {
"@bacons/xcode": "^1.0.0-alpha.24",
"@expo/plist": "^0.1.3",
"@kingstinct/expo-apple-targets": "0",
"@react-native/normalize-color": "^2.1.0"
},
"devDependencies": {
"@types/react": "~18.2.79",
"eslint": "8",
"expo": "~51.0.39",
"expo-module-scripts": "^3.5.2",
"expo-modules-core": "^1.12.24",
"husky": "^9.1.7",
"pkg-pr-new": "0",
"prettier": "^3.3.3",
"react": "18.2.0",
"react-native": "0.74.5"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
}
}