@onesignal/capacitor-plugin 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/package.json ADDED
@@ -0,0 +1,84 @@
1
+ {
2
+ "name": "@onesignal/capacitor-plugin",
3
+ "version": "1.0.0",
4
+ "description": "OneSignal is a high volume Push Notification service for mobile apps. This is the pure Capacitor plugin for OneSignal, providing push notifications, in-app messaging, and more.",
5
+ "keywords": [
6
+ "apns",
7
+ "capacitor",
8
+ "fcm",
9
+ "native",
10
+ "notification",
11
+ "onesignal",
12
+ "plugin",
13
+ "push notification"
14
+ ],
15
+ "homepage": "https://github.com/OneSignal/OneSignal-Capacitor-SDK#readme",
16
+ "bugs": {
17
+ "url": "https://github.com/OneSignal/OneSignal-Capacitor-SDK/issues"
18
+ },
19
+ "license": "MIT",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/OneSignal/OneSignal-Capacitor-SDK.git"
23
+ },
24
+ "files": [
25
+ "dist",
26
+ "ios/Sources",
27
+ "android/src",
28
+ "android/build.gradle.kts",
29
+ "android/gradle",
30
+ "Package.swift",
31
+ "OneSignalCapacitorPlugin.podspec"
32
+ ],
33
+ "type": "module",
34
+ "main": "./dist/index.js",
35
+ "module": "./dist/index.js",
36
+ "types": "./dist/index.d.ts",
37
+ "exports": {
38
+ ".": {
39
+ "types": "./dist/index.d.ts",
40
+ "import": "./dist/index.js"
41
+ }
42
+ },
43
+ "publishConfig": {
44
+ "access": "public"
45
+ },
46
+ "scripts": {
47
+ "build": "vp pack",
48
+ "docgen": "docgen --api OneSignalAPI --project tsconfig.docgen.json --output-readme README.md --output-json dist/docs.json",
49
+ "format": "vp fmt",
50
+ "format:check": "vp fmt --check",
51
+ "lint": "vp check src",
52
+ "lint:fix": "vp check --fix src",
53
+ "test": "vp test",
54
+ "test:coverage": "vp test run --coverage",
55
+ "test:run": "vp test run",
56
+ "verify": "vp build && vp test run && vp lint"
57
+ },
58
+ "devDependencies": {
59
+ "@capacitor/core": "^7.0.0",
60
+ "@capacitor/docgen": "^0.2.2",
61
+ "@types/bun": "latest",
62
+ "@vitest/coverage-v8": "^4.1.2",
63
+ "happy-dom": "^20.9.0",
64
+ "typescript": "^5.9.3",
65
+ "vite": "npm:@voidzero-dev/vite-plus-core@latest",
66
+ "vite-plus": "0.1.20"
67
+ },
68
+ "peerDependencies": {
69
+ "@capacitor/core": "^7.0.0"
70
+ },
71
+ "overrides": {
72
+ "vite": "npm:@voidzero-dev/vite-plus-core@latest",
73
+ "vitest": "npm:@voidzero-dev/vite-plus-test@latest"
74
+ },
75
+ "packageManager": "bun@1.3.13",
76
+ "capacitor": {
77
+ "ios": {
78
+ "src": "ios"
79
+ },
80
+ "android": {
81
+ "src": "android"
82
+ }
83
+ }
84
+ }