-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.14 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.14 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@onesignal/capacitor-plugin",
"version": "1.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.",
"keywords": [
"apns",
"capacitor",
"fcm",
"native",
"notification",
"onesignal",
"plugin",
"push notification"
],
"homepage": "https://github.com/OneSignal/OneSignal-Capacitor-SDK#readme",
"bugs": {
"url": "https://github.com/OneSignal/OneSignal-Capacitor-SDK/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/OneSignal/OneSignal-Capacitor-SDK.git"
},
"files": [
"dist",
"ios/Sources",
"android/src",
"android/build.gradle.kts",
"android/gradle",
"Package.swift",
"OneSignalCapacitorPlugin.podspec"
],
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp pack",
"docgen": "docgen --api OneSignalAPI --project tsconfig.docgen.json --output-readme README.md --output-json dist/docs.json",
"format": "vp fmt",
"format:check": "vp fmt --check",
"lint": "vp check src",
"lint:fix": "vp check --fix src",
"test": "vp test",
"test:coverage": "vp test run --coverage",
"test:run": "vp test run",
"verify": "vp pack && vp test run && vp lint"
},
"devDependencies": {
"@capacitor/core": "7.0.0",
"@capacitor/docgen": "^0.2.2",
"@types/bun": "latest",
"@vitest/coverage-v8": "^4.1.2",
"happy-dom": "^20.9.0",
"typescript": "^5.9.3",
"vite-plus": "0.1.20"
},
"peerDependencies": {
"@capacitor/core": ">=7.0.0"
},
"overrides": {
"vite": "npm:@voidzero-dev/[email protected]",
"vitest": "npm:@voidzero-dev/[email protected]"
},
"packageManager": "[email protected]",
"capacitor": {
"ios": {
"src": "ios"
},
"android": {
"src": "android"
}
}
}