-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.66 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.66 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
{
"name": "onesignal-expo-plugin",
"version": "2.5.0",
"description": "OneSignal Expo config plugin for adding iOS and Android push notification support to managed Expo apps.",
"keywords": [
"EAS",
"expo",
"notifications",
"onesignal",
"push"
],
"homepage": "https://github.com/OneSignal/onesignal-expo-plugin#readme",
"bugs": {
"url": "https://github.com/OneSignal/onesignal-expo-plugin/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/OneSignal/onesignal-expo-plugin.git"
},
"files": [
"dist",
"serviceExtensionFiles",
"widgetExtensionFiles"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"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",
"lint:fix": "vp check --fix src && npm run format",
"test": "vp test"
},
"dependencies": {
"@expo/image-utils": "^0.8.8"
},
"devDependencies": {
"@expo/config-types": "^55.0.5",
"@types/node": "^22.19.3",
"@vitest/coverage-v8": "^4.1.5",
"typescript": "^6.0.3",
"vite-plus": "0.1.19"
},
"peerDependencies": {
"@expo/config-plugins": ">=7.0.0",
"react-native-onesignal": ">=5.0.0"
},
"packageManager": "bun@1.3.13"
}