-
Notifications
You must be signed in to change notification settings - Fork 378
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2 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
74
75
76
77
78
79
{
"name": "react-native-onesignal",
"version": "5.4.1",
"description": "React Native OneSignal SDK",
"keywords": [
"android",
"apns",
"fcm",
"gcm",
"ios",
"notifications",
"onesignal",
"push",
"react-component",
"react-native"
],
"bugs": {
"url": "https://github.com/OneSignal/react-native-onesignal/issues"
},
"license": "MIT",
"author": "OneSignal <https://www.onesignal.com>, Geektime <http://www.geektime.co.il>",
"repository": {
"type": "git",
"url": "https://github.com/OneSignal/react-native-onesignal"
},
"files": [
"dist",
"src/NativeOneSignal.ts",
"android/src",
"android/build.gradle",
"android/proguard-rules.pro",
"ios",
"react-native-onesignal.podspec"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "vp pack",
"format:spotless": "./examples/demo/android/gradlew spotlessApply",
"format": "vp fmt && npm run format:spotless",
"format:check:spotless": "./examples/demo/android/gradlew spotlessCheck",
"format:check": "vp fmt --check && npm run format:check:spotless",
"lint": "vp check src && npm run format:check:spotless",
"lint:fix": "vp check --fix src && npm run format:spotless",
"test": "vp test"
},
"dependencies": {
"invariant": "^2.2.4"
},
"devDependencies": {
"@types/invariant": "^2.2.37",
"@vitest/coverage-v8": "^4.1.0",
"typescript": "^5.9.3",
"vite-plus": "^0.1.11"
},
"peerDependencies": {
"react-native": ">=0.76.0"
},
"packageManager": "pnpm@10.32.1",
"pnpm": {
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
}
},
"codegenConfig": {
"name": "RNOneSignalSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.onesignal.rnonesignalandroid"
},
"ios": {
"modulesProvider": {
"OneSignal": "RCTOneSignalEventEmitter"
}
}
}
}