You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.4 KiB
79 lines
2.4 KiB
{
|
|
"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",
|
|
"build:android": "chmod +x scripts/build-native.sh && ./scripts/build-native.sh --platform android",
|
|
"build:ios": "chmod +x scripts/build-native.sh && ./scripts/build-native.sh --platform ios",
|
|
"build:native": "chmod +x scripts/build-native.sh && ./scripts/build-native.sh --platform all",
|
|
"test:android": "cd android && ./gradlew test",
|
|
"test:ios": "cd ios && xcodebuild test -scheme DailyNotificationPlugin -destination 'platform=iOS Simulator,name=iPhone 14'",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"lint": "eslint . --ext .ts",
|
|
"lint:fix": "eslint . --ext .ts --fix",
|
|
"validate": "npm run lint && npm run build && npm run test:android",
|
|
"validate:ios": "npm run lint && npm run build && npm run test:ios",
|
|
"preinstall": "node scripts/check-environment.js",
|
|
"postinstall": "node scripts/setup-native.js"
|
|
},
|
|
"author": "Matthew Raymer",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@capacitor/android": "^5.0.0",
|
|
"@capacitor/core": "^5.0.0",
|
|
"@capacitor/ios": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@capacitor/cli": "^5.0.0",
|
|
"@jest/globals": "^29.5.0",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^20.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"eslint": "^8.0.0",
|
|
"jest": "^29.5.0",
|
|
"rimraf": "^5.0.0",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@capacitor/core": "^5.0.0"
|
|
},
|
|
"files": [
|
|
"dist/",
|
|
"ios/",
|
|
"android/",
|
|
"CapacitorDailyNotification.podspec"
|
|
],
|
|
"keywords": [
|
|
"capacitor",
|
|
"plugin",
|
|
"native",
|
|
"notification",
|
|
"daily"
|
|
],
|
|
"capacitor": {
|
|
"ios": {
|
|
"src": "ios"
|
|
},
|
|
"android": {
|
|
"src": "android"
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/yourusername/capacitor-daily-notification"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/yourusername/capacitor-daily-notification/issues"
|
|
}
|
|
}
|
|
|