forked from capacitor-community/fcm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.59 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
59
60
61
62
63
64
{
"name": "@textable-app/fcm",
"version": "4.0.2",
"description": "Enable Firebase Cloud Messaging features for Capacitor apps",
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf ./dist",
"watch": "tsc --watch",
"prepublishOnly": "npm run build",
"release:patch": "standard-version release --release-as patch",
"release:minor": "standard-version release --release-as minor",
"release:major": "standard-version release --release-as major",
"contributors:add": "all-contributors add",
"contributors:gen": "all-contributors generate",
"prepare": "npm run build"
},
"author": "Stewan Silva",
"license": "MIT",
"dependencies": {
"@capacitor/core": "^4.0.0"
},
"devDependencies": {
"@capacitor/android": "^4.0.0",
"@capacitor/cli": "^4.0.0",
"@capacitor/ios": "^4.0.0",
"all-contributors-cli": "^6.16.0",
"typescript": "~4.0.0"
},
"files": [
"dist/",
"ios/",
"android/",
"TextableAppFcm.podspec"
],
"keywords": [
"capacitor",
"plugin",
"native",
"fcm",
"firebase cloud messaging"
],
"capacitor": {
"ios": {
"src": "ios"
},
"android": {
"src": "android"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/capacitor-community/fcm.git"
},
"bugs": {
"url": "https://github.com/capacitor-community/fcm/issues"
},
"homepage": "https://github.com/capacitor-community/fcm#readme",
"directories": {
"example": "example"
}
}