tauri-plugin-app-control 0.1.1

A Tauri plugin for Android application lifecycle control (minimize, close, exit, state).
Documentation
{
  "name": "tauri-plugin-app-control-api",
  "version": "0.1.1",
  "author": "You <you@example.com>",
  "description": "JS/TS API for Tauri App Control plugin (Android lifecycle).",
  "license": "MIT OR Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/your-username/tauri-plugin-app-control.git"
  },
  "homepage": "https://github.com/your-username/tauri-plugin-app-control#readme",
  "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",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "scripts": {
    "build": "rollup -c",
    "dev": "rollup -c -w",
    "prepublishOnly": "npm run build",
    "check": "tsc --noEmit --project guest-js/tsconfig.json && cargo check",
    "publish:dry-run": "cargo publish --dry-run && npm publish --dry-run",
    "publish": "cargo publish && npm publish"
  },
  "keywords": ["tauri", "plugin", "android", "app-control", "lifecycle", "tauri-plugin"],
  "dependencies": {
    "@tauri-apps/api": "^2.5.0",
    "tslib": "^2.8.1"
  },
  "devDependencies": {
    "@rollup/plugin-typescript": "^12.1.2",
    "typescript": "^5.8.3"
  }
}