-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 934 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 934 Bytes
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
{
"name": "@onesignal/onesignal-vue3",
"version": "2.3.2",
"description": "Vue 3 OneSignal Plugin: Make it easy to integrate OneSignal with your Vue App!",
"type": "module",
"contributors": [
{
"name": "Rodrigo Gomez-Palacio"
},
{
"name": "Enzo Innocenzi"
}
],
"license": "MIT",
"repository": "OneSignal/onesignal-vue3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint . --ext .ts",
"build": "npm run lint && tsc",
"prepare": "npm run build"
},
"dependencies": {
"vue": "^3.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"eslint-plugin-vue": "^9.17.0",
"typescript": "^4.6.3"
},
"files": [
"dist"
],
"keywords": [
"onesignal",
"push",
"notification",
"push notification",
"vue"
]
}