@onesignal/onesignal-vue3 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +40 -0
- package/LICENSE +24 -0
- package/README.md +227 -0
- package/dist/index.d.ts +119 -0
- package/dist/index.js +710 -0
- package/dist/index.js.map +1 -0
- package/index.ts +891 -0
- package/package.json +36 -0
- package/tsconfig.json +25 -0
package/package.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@onesignal/onesignal-vue3",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Vue 3 OneSignal Plugin: Make it easy to integrate OneSignal with your Vue App!",
|
|
5
|
+
"author": "rgomezp",
|
|
6
|
+
"contributors": [
|
|
7
|
+
{
|
|
8
|
+
"name": "Rodrigo Gomez-Palacio"
|
|
9
|
+
}
|
|
10
|
+
],
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"repository": "OneSignal/onesignal-vue3",
|
|
13
|
+
"main": "dist/index.js",
|
|
14
|
+
"types": "dist/index.d.ts",
|
|
15
|
+
"scripts": {
|
|
16
|
+
"lint": "./node_modules/.bin/eslint . --ext .ts",
|
|
17
|
+
"build": "yarn run lint && tsc",
|
|
18
|
+
"prepare": "yarn run build"
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"vue": "^3.2.0"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@typescript-eslint/eslint-plugin": "^5.20.0",
|
|
25
|
+
"@typescript-eslint/parser": "^5.20.0",
|
|
26
|
+
"eslint": "^8.13.0",
|
|
27
|
+
"typescript": "^4.6.3"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"onesignal",
|
|
31
|
+
"push",
|
|
32
|
+
"notification",
|
|
33
|
+
"push notification",
|
|
34
|
+
"vue"
|
|
35
|
+
]
|
|
36
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"outDir": "dist",
|
|
4
|
+
"module": "esnext",
|
|
5
|
+
"target": "es6",
|
|
6
|
+
"lib": ["es6", "dom", "es2016", "es2017"],
|
|
7
|
+
"sourceMap": true,
|
|
8
|
+
"allowJs": true,
|
|
9
|
+
"declaration": true,
|
|
10
|
+
"moduleResolution": "node",
|
|
11
|
+
"forceConsistentCasingInFileNames": true,
|
|
12
|
+
"noImplicitReturns": true,
|
|
13
|
+
"noImplicitThis": true,
|
|
14
|
+
"noImplicitAny": false,
|
|
15
|
+
"strictNullChecks": false,
|
|
16
|
+
"suppressImplicitAnyIndexErrors": true,
|
|
17
|
+
"noUnusedLocals": true,
|
|
18
|
+
"noUnusedParameters": true,
|
|
19
|
+
"allowSyntheticDefaultImports": true,
|
|
20
|
+
"downlevelIteration": true,
|
|
21
|
+
"skipLibCheck": true
|
|
22
|
+
},
|
|
23
|
+
"include": ["index.ts"],
|
|
24
|
+
"exclude": ["node_modules", "build", "dist", "example", "rollup.config.js"]
|
|
25
|
+
}
|