-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.59 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.59 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
{
"name": "cleverpush-expo-plugin",
"version": "0.0.2",
"description": "Expo config plugin for CleverPush push notifications with automatic NSE setup and rich notification support.",
"main": "build/app.plugin.js",
"types": "build/app.plugin.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf build && tsc && cp -r support/serviceExtensionFiles build/support/",
"lint": "eslint . --ext .ts",
"prepare": "yarn run build",
"example": "cd examples/CleverPushExpoExample && npm start",
"example:install": "cd examples/CleverPushExpoExample && npm install",
"example:prebuild": "cd examples/CleverPushExpoExample && npx expo prebuild --clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cleverpush/cleverpush-expo-plugin.git"
},
"keywords": [
"react-native",
"expo",
"expo-plugin",
"cleverpush",
"push-notifications",
"mobile",
"ios",
"android"
],
"author": "",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/cleverpush/cleverpush-expo-plugin/issues"
},
"homepage": "https://github.com/cleverpush/cleverpush-expo-plugin#readme",
"peerDependencies": {
"@expo/config-plugins": "^8.0.0",
"@expo/config-types": "^51.0.0",
"expo": "*"
},
"devDependencies": {
"@expo/config-plugins": "^8.0.0",
"@expo/config-types": "^51.0.0",
"@expo/image-utils": "^0.5.0",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"eslint": "*",
"typescript": "~5.8.3"
}
}