forked from kingstinct/react-native-device-activity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.01 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.01 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
{
"name": "react-native-device-activity",
"version": "0.4.31",
"private": false,
"description": "Provides access to Apples DeviceActivity API",
"main": "packages/react-native-device-activity/build/index.js",
"types": "packages/react-native-device-activity/build/index.d.ts",
"scripts": {
"lint": "eslint .",
"pre-push": "bun run typecheck && bun run lint",
"typecheck": "cd packages/react-native-device-activity && bun run typecheck",
"typecheck-all": "cd packages/react-native-device-activity && bun run typecheck && cd ../../apps/example && bun run typecheck",
"build": "cd packages/react-native-device-activity && npm run build",
"prepare": "npm run build",
"postinstall": "husky",
"nail-workspace-dependency-versions": "bun run scripts/nail-workspace-dependency-versions.ts"
},
"workspaces": [
"packages/*",
"apps/*"
],
"keywords": [
"react-native",
"expo",
"react-native-device-activity",
"device-activity",
"screen-time"
],
"repository": {
"url": "git+https://github.com/kingstinct/react-native-device-activity.git"
},
"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.1.19",
"@react-native/normalize-color": "^2.1.0"
},
"devDependencies": {
"eslint": "8",
"husky": "^9.1.7",
"prettier": "^3.3.3",
"@types/react": "~18.3.12",
"expo": "52",
"expo-module-scripts": "^3.5.2",
"expo-modules-core": "~2.2.3",
"typescript": "^5.0.0",
"react": "*",
"react-native": "*"
},
"peerDependencies": {
"expo": ">=52",
"react": ">=18.3",
"react-native": ">=0.76"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}