@onesignal/onesignal-vue3 2.0.1 → 2.2.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/package.json CHANGED
@@ -1,20 +1,24 @@
1
1
  {
2
2
  "name": "@onesignal/onesignal-vue3",
3
- "version": "2.0.1",
3
+ "version": "2.2.0",
4
4
  "description": "Vue 3 OneSignal Plugin: Make it easy to integrate OneSignal with your Vue App!",
5
- "author": "rgomezp",
5
+ "type": "module",
6
6
  "contributors": [
7
- { "name": "Rodrigo Gomez-Palacio" },
8
- { "name": "Enzo Innocenzi" }
7
+ {
8
+ "name": "Rodrigo Gomez-Palacio"
9
+ },
10
+ {
11
+ "name": "Enzo Innocenzi"
12
+ }
9
13
  ],
10
14
  "license": "MIT",
11
15
  "repository": "OneSignal/onesignal-vue3",
12
16
  "main": "dist/index.js",
13
17
  "types": "dist/index.d.ts",
14
18
  "scripts": {
15
- "lint": "./node_modules/.bin/eslint . --ext .ts",
16
- "build": "yarn run lint && tsc",
17
- "prepare": "yarn run build"
19
+ "lint": "eslint . --ext .ts",
20
+ "build": "npm run lint && tsc",
21
+ "prepare": "npm run build"
18
22
  },
19
23
  "dependencies": {
20
24
  "vue": "^3.2.0"
package/tsconfig.json CHANGED
@@ -13,7 +13,6 @@
13
13
  "noImplicitThis": true,
14
14
  "noImplicitAny": false,
15
15
  "strictNullChecks": false,
16
- "suppressImplicitAnyIndexErrors": true,
17
16
  "noUnusedLocals": true,
18
17
  "noUnusedParameters": true,
19
18
  "allowSyntheticDefaultImports": true,