Initial commit

This commit is contained in:
Matthew Raymer
2025-03-25 10:40:14 +00:00
commit e946767cba
6 changed files with 128 additions and 0 deletions

45
package.json Normal file
View File

@@ -0,0 +1,45 @@
{
"name": "capacitor-daily-notification",
"version": "0.0.1",
"description": "Capacitor plugin for daily notifications with network content",
"main": "dist/plugin.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf ./dist",
"watch": "tsc --watch",
"prepublishOnly": "npm run build"
},
"author": "Matthew Raymer",
"license": "MIT",
"dependencies": {
"@capacitor/core": "^5.0.0"
},
"devDependencies": {
"typescript": "^4.9.0",
"rimraf": "^3.0.2"
},
"peerDependencies": {
"@capacitor/core": "^5.0.0"
},
"files": [
"dist/",
"ios/",
"android/",
"CapacitorDailyNotification.podspec"
],
"keywords": [
"capacitor",
"plugin",
"native"
],
"capacitor": {
"ios": {
"src": "ios"
},
"android": {
"src": "android"
}
}
}