UNPKG

native-update

Version:

Foundation package for building a comprehensive update system for Capacitor apps. Provides architecture and interfaces but requires backend implementation.

114 lines (113 loc) 2.98 kB
{ "name": "native-update", "version": "1.1.4", "description": "Foundation package for building a comprehensive update system for Capacitor apps. Provides architecture and interfaces but requires backend implementation.", "type": "module", "main": "dist/plugin.cjs.js", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "unpkg": "dist/plugin.js", "bin": { "native-update": "./cli/index.js" }, "files": [ "android/src/main/", "android/build.gradle", "android/variables.gradle", "android/gradle.properties", "android/gradle/", "android/settings.gradle", "android/proguard-rules.pro", "dist/", "ios/Plugin/", "NativeUpdate.podspec", "docs/", "cli/", "templates/" ], "author": { "name": "Ahsan Mahmood", "email": "aoneahsan@gmail.com", "url": "https://aoneahsan.com" }, "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/aoneahsan/native-update.git" }, "bugs": { "url": "https://github.com/aoneahsan/native-update/issues" }, "homepage": "https://github.com/aoneahsan/native-update#readme", "keywords": [ "capacitor", "plugin", "native", "app-updates", "native-updates", "ota", "live-updates", "hot-reload", "app-store", "google-play", "in-app-updates", "app-reviews", "ios", "android", "hybrid" ], "scripts": { "build": "npm run clean && npm run tsc && rollup -c rollup.config.js", "build:prod": "npm run clean && npm run tsc && NODE_ENV=production rollup -c rollup.config.js", "clean": "rimraf ./dist", "tsc": "tsc", "watch": "tsc --watch", "lint": "eslint . --ext ts", "prettier": "prettier --write .", "prepublishOnly": "npm run build:prod", "swiftlint": "cd ios && swiftlint lint --fix --format --path Plugin --verbose", "test": "vitest", "test:ui": "vitest --ui", "test:coverage": "vitest --coverage" }, "dependencies": { "archiver": "^7.0.1", "chalk": "^5.6.0", "commander": "^14.0.0", "express": "^5.1.0", "ora": "^8.2.0", "prompts": "^2.4.2" }, "devDependencies": { "@capacitor/android": "^7.4.2", "@capacitor/core": "^7.4.2", "@capacitor/filesystem": "^7.1.4", "@capacitor/ios": "^7.4.2", "@capacitor/preferences": "^7.0.2", "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "^16.0.1", "@rollup/plugin-terser": "^0.4.4", "@types/node": "^24.3.0", "@typescript-eslint/eslint-plugin": "^8.40.0", "@typescript-eslint/parser": "^8.40.0", "@vitest/ui": "^3.2.4", "eslint": "^9.33.0", "happy-dom": "^18.0.1", "prettier": "^3.6.2", "rimraf": "^6.0.1", "rollup": "^4.46.3", "typescript": "^5.9.2", "vitest": "^3.2.4" }, "peerDependencies": { "@capacitor/core": "^7.4.2" }, "capacitor": { "ios": { "src": "ios" }, "android": { "src": "android" } } }