diff --git a/.github/workflows/syncCommunityResources.yml b/.github/workflows/syncCommunityResources.yml
new file mode 100644
index 0000000000..be554f5e87
--- /dev/null
+++ b/.github/workflows/syncCommunityResources.yml
@@ -0,0 +1,53 @@
+name: 'Sync Community Resources'
+
+on:
+ schedule:
+ # weekly on Mondays at 00:00 UTC
+ - cron: '0 0 * * 1'
+ workflow_dispatch:
+
+permissions:
+ contents: read
+
+jobs:
+ sync-community-resources:
+ name: Sync Community Resources
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v4
+
+ - uses: pnpm/action-setup@v4
+
+ - uses: actions/setup-node@v4
+ with:
+ node-version: 20
+ cache: 'pnpm'
+
+ - run: pnpm i
+
+ - name: sync-community-resources
+ run: pnpm build:community-resources
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+
+ - run: pnpm prettier src/data -w
+
+ # tauri-docs PR
+ - name: Git config
+ run: |
+ git config --global user.name "tauri-bot"
+ git config --global user.email "tauri-bot@tauri.app"
+
+ - name: Create pull request for updated docs
+ id: cpr
+ # soft fork of https://github.com/peter-evans/create-pull-request for security purposes
+ uses: tauri-apps/create-pull-request@v3.4.1
+ if: github.event_name != 'pull_request' && github.event_name != 'push'
+ with:
+ token: ${{ secrets.ORG_TAURI_BOT_PAT }}
+ commit-message: 'chore(docs): Update Community Resources'
+ branch: ci/v2/update-community-resources
+ title: Update Community Resources
+ labels: 'bot'
diff --git a/package.json b/package.json
index 0303dde0ce..711a074b20 100644
--- a/package.json
+++ b/package.json
@@ -14,6 +14,7 @@
"dev": "astro dev",
"format": "prettier -w --cache --plugin prettier-plugin-astro .",
"format:check": "prettier -c --cache --plugin prettier-plugin-astro .",
+ "build:community-resources": "pnpm --filter community-resources run build",
"build:compatibility-table": "pnpm --filter compatibility-table run build",
"build:references": "pnpm --filter js-api-generator run build",
"build:releases": "pnpm --filter releases-generator run build",
diff --git a/packages/community-resources/.prettierrc b/packages/community-resources/.prettierrc
new file mode 100644
index 0000000000..3ea048482e
--- /dev/null
+++ b/packages/community-resources/.prettierrc
@@ -0,0 +1,22 @@
+{
+ "printWidth": 100,
+ "semi": true,
+ "singleQuote": true,
+ "tabWidth": 2,
+ "trailingComma": "es5",
+ "useTabs": false,
+ "overrides": [
+ {
+ "files": ["*.json", "*.md", "*.toml", "*.yml"],
+ "options": {
+ "useTabs": false
+ }
+ },
+ {
+ "files": ["*.md", "*.mdx"],
+ "options": {
+ "printWidth": 80
+ }
+ }
+ ]
+}
diff --git a/packages/community-resources/build.ts b/packages/community-resources/build.ts
new file mode 100644
index 0000000000..340c314ba4
--- /dev/null
+++ b/packages/community-resources/build.ts
@@ -0,0 +1,197 @@
+import fs from 'fs/promises';
+import path from 'path';
+import { fileURLToPath } from 'url';
+
+const __dirname = path.dirname(fileURLToPath(import.meta.url));
+const OUTPUT_FILE = path.resolve(__dirname, '../../src/data/communityResources.json');
+
+const GITHUB_TOKEN = process.env.GITHUB_TOKEN || null;
+const query = 'tauri-plugin-';
+
+const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms));
+
+function cleanRepoUrl(url: string) {
+ if (!url) {
+ return null;
+ }
+ return url.replace(/^git\+/, '').replace(/\.git$/, '');
+}
+
+async function fetchJson(url: string, headers?: Headers) {
+ if (!headers) {
+ headers = new Headers();
+ }
+ if (!headers.has('User-Agent')) {
+ headers.set(
+ 'User-Agent',
+ 'tauri-docs-plugins-discover (https://github.com/tauri-apps/tauri-docs)'
+ );
+ }
+
+ const res = await fetch(url, { headers });
+ if (!res.ok) {
+ throw new Error(`Failed ${url}: ${res.status} ${res.statusText}`);
+ }
+ return res.json();
+}
+
+// https://crates.io/data-access
+async function fetchCrates() {
+ const results = [];
+ let page = 1;
+ const per_page = 100;
+ while (true) {
+ const url = `https://crates.io/api/v1/crates?page=${page}&per_page=${per_page}&q=${query}`;
+ const j = await fetchJson(url);
+ if (!j.crates || j.crates.length === 0) {
+ break;
+ }
+ for (const c of j.crates) {
+ if (!c.name || !c.name.startsWith(query)) {
+ continue;
+ }
+ results.push({
+ source: 'crates',
+ name: c.name,
+ description: c.description || '',
+ version: c.max_version || c.newest_version || '',
+ created_at: c.created_at || '',
+ repository: cleanRepoUrl(c.repository || c.homepage || ''),
+ license: c.license || '',
+ homepage: c.homepage || '',
+ crates_io: `https://crates.io/crates/${c.name}`,
+ });
+ }
+ if (j.meta && j.meta.total <= page * per_page) break;
+ page++;
+ await sleep(1001);
+ }
+ return results;
+}
+
+interface ResultsItem {
+ source: string;
+ name: string;
+ description: string;
+ version: string;
+ version_npm?: string;
+ created_at?: string;
+ repository: string | null;
+ npm?: string;
+ crates_io?: string;
+}
+
+// https://docs.npmjs.com/policies/open-source-terms
+async function fetchNpm() {
+ const results: ResultsItem[] = [];
+ const size = 250;
+ const url = `https://registry.npmjs.org/-/v1/search?text=tauri-plugin-&size=${size}`;
+ const j = await fetchJson(url);
+ if (!j.objects) return results;
+ for (const obj of j.objects) {
+ const p = obj.package;
+ const name = p.name;
+ if (!name) {
+ continue;
+ }
+ if (!/(^|\/)tauri-plugin-/.test(name)) {
+ continue;
+ }
+ const repo = p.links && p.links.repository ? p.links.repository : p.repository;
+ results.push({
+ source: 'npm',
+ name,
+ description: p.description || '',
+ version: p.version || '',
+ created_at: p.date || '',
+ repository: cleanRepoUrl(repo || p.links?.homepage || ''),
+ npm: `https://www.npmjs.com/package/${encodeURIComponent(name)}`,
+ });
+ }
+ return results;
+}
+
+function extractGithubRepo(url: string) {
+ if (!url) {
+ return null;
+ }
+ try {
+ const u = new URL(url);
+ if (u.hostname !== 'github.com') {
+ return null;
+ }
+ const parts = u.pathname.replace(/^\//, '').split('/');
+ if (parts.length < 2) {
+ return null;
+ }
+ return `${parts[0]}/${parts[1]}`;
+ } catch (e) {
+ return null;
+ }
+}
+
+async function fetchGithubStars(ownerRepo: string) {
+ if (!ownerRepo) {
+ return null;
+ }
+ const url = `https://api.github.com/repos/${ownerRepo}`;
+ const headers = new Headers();
+ headers.append('Accept', 'application/vnd.github+json');
+ if (GITHUB_TOKEN) {
+ headers.append('Authorization', `token ${GITHUB_TOKEN}`);
+ }
+ try {
+ const j = await fetchJson(url, headers);
+ return j.stargazers_count ?? null;
+ } catch (e) {
+ return null;
+ }
+}
+
+async function run() {
+ console.log('Fetching crates.io packages...');
+ const crates = await fetchCrates();
+ console.log(`Found ${crates.length} crates matching prefix.`);
+
+ console.log('Fetching npm packages...');
+ const npm = await fetchNpm();
+ console.log(`Found ${npm.length} npm packages matching prefix.`);
+
+ const map = new Map();
+
+ for (const c of crates) {
+ map.set(c.name, { ...c });
+ }
+ for (const n of npm) {
+ const existing = map.get(n.name);
+ if (existing) {
+ existing.npm = n.npm;
+ existing.version_npm = n.version;
+ existing.description = existing.description || n.description;
+ existing.repository = existing.repository || n.repository;
+ } else {
+ map.set(n.name, { ...n });
+ }
+ }
+
+ const items = Array.from(map.values()).sort((a, b) => {
+ const dateA = a.created_at ? new Date(a.created_at).getTime() : 0;
+ const dateB = b.created_at ? new Date(b.created_at).getTime() : 0;
+ return dateB - dateA;
+ });
+
+ const outputData = {
+ generated: new Date().toISOString(),
+ count: items.length,
+ resources: items,
+ };
+
+ await fs.mkdir(path.dirname(OUTPUT_FILE), { recursive: true });
+ await fs.writeFile(OUTPUT_FILE, JSON.stringify(outputData, null, 2), 'utf8');
+ console.log(`Wrote ${items.length} resources to ${OUTPUT_FILE}`);
+}
+
+run().catch((e) => {
+ console.error('Error generating resources:', e);
+ process.exit(1);
+});
diff --git a/packages/community-resources/package.json b/packages/community-resources/package.json
new file mode 100644
index 0000000000..d6313f370e
--- /dev/null
+++ b/packages/community-resources/package.json
@@ -0,0 +1,19 @@
+{
+ "name": "community-resources",
+ "version": "1.0.0",
+ "private": "true",
+ "description": "",
+ "main": "index.js",
+ "type": "module",
+ "scripts": {
+ "build": "tsm ./build.ts"
+ },
+ "keywords": [],
+ "author": "",
+ "license": "MIT",
+ "dependencies": {
+ "@types/node": "^22.0.0",
+ "tsm": "^2.3.0",
+ "typescript": "^5.3.3"
+ }
+}
diff --git a/packages/community-resources/tsconfig.json b/packages/community-resources/tsconfig.json
new file mode 100644
index 0000000000..f5108b4174
--- /dev/null
+++ b/packages/community-resources/tsconfig.json
@@ -0,0 +1,10 @@
+{
+ "compilerOptions": {
+ "module": "nodenext",
+ "moduleResolution": "nodenext",
+ "strict": true,
+ "allowImportingTsExtensions": true,
+ "noEmit": true,
+ "skipLibCheck": true
+ }
+}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 0e7ff95d61..66a0fbbf34 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -87,6 +87,18 @@ importers:
specifier: ^5.3.3
version: 5.9.3
+ packages/community-resources:
+ dependencies:
+ '@types/node':
+ specifier: ^22.0.0
+ version: 22.15.21
+ tsm:
+ specifier: ^2.3.0
+ version: 2.3.0
+ typescript:
+ specifier: ^5.3.3
+ version: 5.9.3
+
packages/compatibility-table:
dependencies:
'@iarna/toml':
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index e700754dac..68f400582c 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -6,6 +6,7 @@ packages:
- packages/releases-generator
- packages/compatibility-table
- packages/fetch-sponsors
+ - packages/community-resources
onlyBuiltDependencies:
- '@parcel/watcher'
- esbuild
diff --git a/src/components/CommunityResources.astro b/src/components/CommunityResources.astro
new file mode 100644
index 0000000000..a33e11a92f
--- /dev/null
+++ b/src/components/CommunityResources.astro
@@ -0,0 +1,407 @@
+---
+import communityResourcesData from '../data/communityResources.json';
+import { Icon } from '@astrojs/starlight/components';
+
+const { resources, count, generated } = communityResourcesData;
+
+const filteredResources = resources.filter((item) => !item.repository?.includes('tauri-apps'));
+---
+
+
+ Plugins
+
+
+
+
+
+
+
+
+
+
+ Showing {filteredResources.length} of {filteredResources.length} community plugins
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {
+ filteredResources.map((item) => (
+
+
+
+ {item.name}
+
+ {item.repository && (
+
+
+
+ )}
+ {item.crates_io && (
+
+
+
+ )}
+ {item.npm && (
+
+
+
+ )}
+
+
+ |
+ {item.description} |
+
+ {item.created_at
+ ? new Date(item.created_at).toLocaleDateString('en-US', {
+ year: 'numeric',
+ month: 'short',
+ day: 'numeric',
+ })
+ : '-'}
+ |
+
+ ))
+ }
+
+
+
+ No plugins match your search criteria.
+
+
+
+
+
diff --git a/src/components/list/Features.astro b/src/components/list/Features.astro
index 7cfa560104..23357714a2 100644
--- a/src/components/list/Features.astro
+++ b/src/components/list/Features.astro
@@ -33,4 +33,4 @@ function fetchData(pluginSlug: string) {
}
---
-
+
diff --git a/src/content/docs/plugin/index-external-resources.mdx b/src/content/docs/plugin/index-external-resources.mdx
new file mode 100644
index 0000000000..58b17dd396
--- /dev/null
+++ b/src/content/docs/plugin/index-external-resources.mdx
@@ -0,0 +1,21 @@
+---
+title: Community Plugins
+i18nReady: true
+sidebar:
+ label: Overview
+tableOfContents: false
+template: splash
+---
+
+import CommunityResources from '@components/CommunityResources.astro';
+
+:::danger
+
+These plugins are extracted from [crates.io](https://crates.io/) and [npmjs.com](https://www.npmjs.com/). Be advised that these are
+external resources and are neither maintained nor endorsed by the Tauri Working Group, always exercise caution.
+
+:::
+
+---
+
+
diff --git a/src/content/docs/plugin/index.mdx b/src/content/docs/plugin/index.mdx
index 3a35085223..d11aff3efe 100644
--- a/src/content/docs/plugin/index.mdx
+++ b/src/content/docs/plugin/index.mdx
@@ -12,6 +12,7 @@ import CommunityList from '@components/list/Community.astro';
import Search from '@components/CardGridSearch.astro';
import AwesomeTauri from '@components/AwesomeTauri.astro';
import TableCompatibility from '@components/plugins/TableCompatibility.astro';
+import CommunityResources from '@components/CommunityResources.astro';
import { platformOptions } from 'src/types';
import { platformFilters } from 'src/api/search.ts';
@@ -21,6 +22,8 @@ Tauri comes with extensibility in mind. On this page you'll find:
- **[Community Resources](#community-plugins)**: More plugins and recipes built by the Tauri community. You can also contribute your own on [Awesome Tauri](https://github.com/tauri-apps/awesome-tauri)
- **[Support Table](#support-table)**: A compatibility table showing which platforms are supported by each official plugin
+Also, there's a [dedicated page](/plugin/index-external-resources/) listing community tauri-plugin-\* Crates and NPM packages
+
**Use the search and filter functionality to find features or community resources:**
diff --git a/src/data/communityResources.json b/src/data/communityResources.json
new file mode 100644
index 0000000000..dfa6744272
--- /dev/null
+++ b/src/data/communityResources.json
@@ -0,0 +1,3638 @@
+{
+ "generated": "2025-12-09T17:51:53.088Z",
+ "count": 346,
+ "resources": [
+ {
+ "source": "crates",
+ "name": "tauri-plugin-frame",
+ "description": "Opnionated window decoration controls for Tauri apps.",
+ "version": "1.1.1",
+ "created_at": "2025-12-09T16:02:44.671144Z",
+ "repository": "https://github.com/clarifei/tauri-plugin-frame",
+ "license": "",
+ "homepage": "https://github.com/clarifei/tauri-plugin-frame",
+ "crates_io": "https://crates.io/crates/tauri-plugin-frame"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-cache-api",
+ "description": "Comprehensive disk and memory caching solution for Tauri applications. Features dynamic TTL management, intelligent data compression, automatic cleanup, and statistics monitoring. Delivers high-performance data access, optimized storage, and improved user",
+ "version": "0.1.6",
+ "created_at": "2025-12-09T04:08:28.168Z",
+ "repository": "https://github.com/Taiizor/tauri-plugin-cache",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-cache-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-video-thumbnail",
+ "description": "Generate video thumbnails from URLs or local paths for Tauri applications",
+ "version": "0.1.0",
+ "created_at": "2025-12-08T14:38:17.330665Z",
+ "repository": "https://github.com/dickwu/tauri-plugin-video-thumbnail",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-video-thumbnail"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-askit-api",
+ "description": "Tauri plugin for Agent Stream Kit",
+ "version": "0.5.1",
+ "created_at": "2025-12-07T14:10:43.942Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-askit-api"
+ },
+ {
+ "source": "npm",
+ "name": "@hypothesi/tauri-plugin-mcp-bridge",
+ "description": "JavaScript bindings for @hypothesi/tauri-plugin-mcp-bridge - MCP Bridge plugin for Tauri",
+ "version": "0.4.0",
+ "created_at": "2025-12-05T22:24:42.568Z",
+ "repository": "https://github.com/hypothesi/mcp-server-tauri",
+ "npm": "https://www.npmjs.com/package/%40hypothesi%2Ftauri-plugin-mcp-bridge"
+ },
+ {
+ "source": "npm",
+ "name": "@choochmeque/tauri-plugin-notifications-api",
+ "description": "A Tauri v2 plugin for sending notifications on desktop and mobile platforms with support for system notifications and push delivery via FCM and APNs.",
+ "version": "0.3.1",
+ "created_at": "2025-12-01T19:37:13.903Z",
+ "repository": "https://github.com/Choochmeque/tauri-plugin-notifications",
+ "npm": "https://www.npmjs.com/package/%40choochmeque%2Ftauri-plugin-notifications-api"
+ },
+ {
+ "source": "npm",
+ "name": "@proj-airi/tauri-plugin-mcp",
+ "description": "A Tauri plugin for interacting with MCP servers.",
+ "version": "0.8.0-alpha.8",
+ "created_at": "2025-12-01T19:02:36.221Z",
+ "repository": "https://github.com/moeru-ai/airi",
+ "npm": "https://www.npmjs.com/package/%40proj-airi%2Ftauri-plugin-mcp"
+ },
+ {
+ "source": "npm",
+ "name": "@choochmeque/tauri-plugin-iap-api",
+ "description": "A Tauri v2 plugin that enables In-App Purchases (IAP)",
+ "version": "0.5.0",
+ "created_at": "2025-12-01T12:26:04.560Z",
+ "repository": "https://github.com/Choochmeque/tauri-plugin-iap",
+ "npm": "https://www.npmjs.com/package/%40choochmeque%2Ftauri-plugin-iap-api"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-android-fs-api",
+ "description": "Android file system API for Tauri.",
+ "version": "23.0.1",
+ "created_at": "2025-11-28T16:31:05.219Z",
+ "repository": "https://github.com/aiueo13/tauri-plugin-android-fs",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-android-fs-api"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-broadcast-api",
+ "description": "Tauri plugin for broadcast",
+ "version": "0.3.0",
+ "created_at": "2025-11-28T02:33:51.750Z",
+ "repository": "https://github.com/dote27/tauri-plugin-broadcast",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-broadcast-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-mcp-bridge",
+ "description": "MCP Bridge plugin for Tauri - enables IPC monitoring and backend inspection",
+ "version": "0.4.0",
+ "created_at": "2025-11-27T04:18:49.188220Z",
+ "repository": "https://github.com/hypothesi/mcp-server-tauri",
+ "license": "",
+ "homepage": "https://github.com/hypothesi/mcp-server-tauri",
+ "crates_io": "https://crates.io/crates/tauri-plugin-mcp-bridge"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-advanced-file-manager",
+ "description": "Advanced file manager plugin combining fs, dialog, and opener functionality for desktop platforms",
+ "version": "0.1.5",
+ "created_at": "2025-11-27T03:23:06.098121Z",
+ "repository": "https://github.com/1600822305/tauri-plugin-advanced-file-manager",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-advanced-file-manager"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-edge-to-edge",
+ "description": "Tauri plugin for iOS/Android Edge-to-Edge fullscreen support with safe area injection",
+ "version": "0.3.3",
+ "created_at": "2025-11-26T06:05:46.000104Z",
+ "repository": "https://github.com/1600822305/tauri-plugin-edge-to-edge",
+ "license": "",
+ "homepage": "https://github.com/1600822305/tauri-plugin-edge-to-edge",
+ "crates_io": "https://crates.io/crates/tauri-plugin-edge-to-edge"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-netwait-api",
+ "description": "A Tauri plugin for network status monitoring and waiting.",
+ "version": "0.1.0",
+ "created_at": "2025-11-25T13:25:05.126Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-netwait-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-netwait",
+ "description": "A Tauri plugin for network status monitoring and waiting.",
+ "version": "0.2.0",
+ "created_at": "2025-11-25T13:24:30.208175Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-netwait"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-libmpv-api",
+ "description": "A Tauri plugin for embedding the mpv player in your app via libmpv.",
+ "version": "0.3.2",
+ "created_at": "2025-11-24T04:33:04.510Z",
+ "repository": "https://github.com/nini22P/tauri-plugin-libmpv",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-libmpv-api"
+ },
+ {
+ "source": "npm",
+ "name": "@choochmeque/tauri-plugin-biometry-api",
+ "description": "A Tauri v2 plugin for biometric authentication (Touch ID, Face ID, fingerprint) on Android, macOS, iOS and Windows.",
+ "version": "0.2.5",
+ "created_at": "2025-11-20T21:38:58.924Z",
+ "repository": "https://github.com/Choochmeque/tauri-plugin-biometry",
+ "npm": "https://www.npmjs.com/package/%40choochmeque%2Ftauri-plugin-biometry-api"
+ },
+ {
+ "source": "npm",
+ "name": "@choochmeque/tauri-plugin-sharekit-api",
+ "description": "A Tauri v2 plugin that enables sharing content with native sharing interfaces on Android, iOS, macOS and Windows.",
+ "version": "0.2.4",
+ "created_at": "2025-11-20T21:31:35.760Z",
+ "repository": "https://github.com/Choochmeque/tauri-plugin-sharekit",
+ "npm": "https://www.npmjs.com/package/%40choochmeque%2Ftauri-plugin-sharekit-api"
+ },
+ {
+ "source": "npm",
+ "name": "@choochmeque/tauri-plugin-google-auth-api",
+ "description": "A Tauri v2 plugin that enables Google OAuth authentication",
+ "version": "0.3.4",
+ "created_at": "2025-11-20T21:17:30.063Z",
+ "repository": "https://github.com/Choochmeque/tauri-plugin-google-auth",
+ "npm": "https://www.npmjs.com/package/%40choochmeque%2Ftauri-plugin-google-auth-api"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-sse-api",
+ "description": " ",
+ "version": "0.1.1",
+ "created_at": "2025-11-20T01:40:23.023Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-sse-api"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-mpv-api",
+ "description": "A Tauri plugin for embedding the mpv player in your app by controlling its process via JSON IPC.",
+ "version": "0.5.2",
+ "created_at": "2025-11-18T12:39:29.728Z",
+ "repository": "https://github.com/nini22P/tauri-plugin-mpv",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-mpv-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-macos-input-monitor",
+ "description": "macOS-only Tauri plugin using CGEventTap FFI to intercept and override system keyboard shortcuts",
+ "version": "0.1.0",
+ "created_at": "2025-11-18T05:00:35.125413Z",
+ "repository": "https://github.com/yigitkonur/tauri-plugin-macos-input-monitor",
+ "license": "",
+ "homepage": "https://github.com/yigitkonur/tauri-plugin-macos-input-monitor",
+ "crates_io": "https://crates.io/crates/tauri-plugin-macos-input-monitor"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-music-notification-api",
+ "description": "A Tauri plugin for music notifications",
+ "version": "0.2.0",
+ "created_at": "2025-11-15T03:59:59.823260Z",
+ "repository": "https://github.com/VMASPAD/tauri-plugin-music-notification",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-music-notification-api",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-music-notification-api",
+ "version_npm": "0.1.0"
+ },
+ {
+ "source": "npm",
+ "name": "@crabnebula/tauri-plugin-better-auth-license",
+ "description": "Tauri plugin for license-based authentication and secure device validation.",
+ "version": "0.0.9",
+ "created_at": "2025-11-14T19:15:29.584Z",
+ "repository": "https://github.com/crabnebula-dev/better-auth-license",
+ "npm": "https://www.npmjs.com/package/%40crabnebula%2Ftauri-plugin-better-auth-license"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-printer-wkhtml-bin",
+ "description": "Tauri plugin for printer with embedded wkhtmltopdf for Windows",
+ "version": "0.1.3",
+ "created_at": "2025-11-13T17:00:15.860479Z",
+ "repository": "https://github.com/FrancoJFerreyra/tauri-plugin-printer",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-printer-wkhtml-bin",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-printer-wkhtml-bin",
+ "version_npm": "0.1.3"
+ },
+ {
+ "source": "npm",
+ "name": "@razein97/tauri-plugin-rusqlite2",
+ "description": "A fork of tauri-plugin-sqlite by @bspeckco using rusqlite, supporting only SQLite with added transaction capabilities.",
+ "version": "2.2.5",
+ "created_at": "2025-11-11T14:48:07.052Z",
+ "repository": "https://github.com/razein97/tauri-plugin-rusqlite2",
+ "npm": "https://www.npmjs.com/package/%40razein97%2Ftauri-plugin-rusqlite2"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-ntb",
+ "description": "A Tauri plugin for custom title bars",
+ "version": "1.0.0",
+ "created_at": "2025-11-05T17:07:00.977878Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-ntb"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-better-auth-license",
+ "description": "Tauri plugin for license-based authentication and secure device validation.",
+ "version": "0.0.12",
+ "created_at": "2025-11-05T16:25:16.720958Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-better-auth-license"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-serialplugin-api",
+ "description": "[](https://www.npmjs.com/package/tauri-plugin-serialplugin-api) [, enabling real-time, one-way updates from server to your Tauri frontend.",
+ "version": "0.1.1",
+ "created_at": "2025-11-03T01:13:43.739753Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-sse"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-i18n",
+ "description": "Internationalization plugin using rust_i18n for tauri apps.",
+ "version": "1.0.0",
+ "created_at": "2025-11-02T16:51:30.610510Z",
+ "repository": "https://github.com/razein97/tauri-plugin-i18n",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-i18n"
+ },
+ {
+ "source": "npm",
+ "name": "@razein97/tauri-plugin-i18n",
+ "description": "A wrapper around rust_i18n",
+ "version": "1.0.0",
+ "created_at": "2025-11-02T16:49:57.822Z",
+ "repository": "https://github.com/razein97/tauri-plugin-i18n",
+ "npm": "https://www.npmjs.com/package/%40razein97%2Ftauri-plugin-i18n"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-ffmpeg",
+ "description": "FFmpeg plugin for Tauri 2: run ffmpeg/ffprobe with progress on desktop/mobile",
+ "version": "0.1.0",
+ "created_at": "2025-10-29T15:06:45.557902Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-ffmpeg"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-desktop-underlay-api",
+ "description": "Tauri plugin for attaching a window to desktop, below icons and above wallpaper.",
+ "version": "0.2.0",
+ "created_at": "2025-10-29T05:27:48.705Z",
+ "repository": "https://github.com/Charlie-XIAO/tauri-plugin-desktop-underlay",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-desktop-underlay-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-mcp-gui",
+ "description": "A Tauri plugin that enables AI agents to interact with desktop GUIs through screenshots, DOM access, and input simulation utilizing MCP",
+ "version": "0.1.0",
+ "created_at": "2025-10-27T00:42:03.117485Z",
+ "repository": "https://github.com/delorenj/tauri-plugin-mcp",
+ "license": "",
+ "homepage": "https://delorenj.github.io",
+ "crates_io": "https://crates.io/crates/tauri-plugin-mcp-gui"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-askit",
+ "description": "Tauri plugin for Agent Stream Kit",
+ "version": "0.5.1",
+ "created_at": "2025-10-26T02:03:50.433756Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-askit"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-use-ffmpeg-api",
+ "description": "A Tauri plugin for using FFmpeg without pre-installation",
+ "version": "0.1.0",
+ "created_at": "2025-10-24T06:06:30.585Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-use-ffmpeg-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-use-ffmpeg",
+ "description": "A Tauri plugin for using FFmpeg without pre-installation",
+ "version": "0.1.0",
+ "created_at": "2025-10-24T05:31:19.192795Z",
+ "repository": "https://github.com/lin52025iq/tauri-plugin-use-ffmpeg",
+ "license": "",
+ "homepage": "https://github.com/lin52025iq/tauri-plugin-use-ffmpeg",
+ "crates_io": "https://crates.io/crates/tauri-plugin-use-ffmpeg"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-system-fonts",
+ "description": "Support getting all fonts installed on your system.",
+ "version": "2.0.2",
+ "created_at": "2025-10-20T17:28:49.883878Z",
+ "repository": "https://github.com/ayangweb/tauri-plugin-system-fonts",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-system-fonts"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-videoplayer-api",
+ "description": "[](https://crates.io/crates/tauri-plugin-videoplayer) [](https://www.",
+ "version": "0.1.6",
+ "created_at": "2025-10-17T00:14:50.947Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-videoplayer-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-clerk",
+ "description": "An unofficial Tauri SDK for Clerk",
+ "version": "0.1.0",
+ "created_at": "2025-10-16T22:45:13.831476Z",
+ "repository": "https://github.com/Nipsuli/tauri-plugin-clerk/",
+ "license": "",
+ "homepage": "https://github.com/Nipsuli/tauri-plugin-clerk/",
+ "crates_io": "https://crates.io/crates/tauri-plugin-clerk",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-clerk",
+ "version_npm": "0.1.0"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-videoplayer",
+ "description": "Fullscreen native video player for tauri",
+ "version": "0.1.6",
+ "created_at": "2025-10-12T18:57:44.761173Z",
+ "repository": "https://github.com/YeonV/tauri-plugin-videoplayer",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-videoplayer"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-medialibrary",
+ "description": "A tauri plugin to access the systems media library (e.g. the android medialibrary)",
+ "version": "0.13.0",
+ "created_at": "2025-10-11T08:36:38.024383Z",
+ "repository": "https://github.com/universalappfactory/tauri-plugin-medialibrary",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-medialibrary"
+ },
+ {
+ "source": "npm",
+ "name": "@universalappfactory/tauri-plugin-medialibrary",
+ "description": "A tauri plugin to access the systems media library (e.g. the android medialibrary)",
+ "version": "0.11.0",
+ "created_at": "2025-10-11T07:59:07.838Z",
+ "repository": "https://github.com/universalappfactory/tauri-plugin-medialibrary",
+ "npm": "https://www.npmjs.com/package/%40universalappfactory%2Ftauri-plugin-medialibrary"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-centrifugo-api",
+ "description": "Tauri plugin for Centrifugo real-time communication using tokio-centrifuge",
+ "version": "0.1.2",
+ "created_at": "2025-10-11T07:57:52.019Z",
+ "repository": "https://github.com/s00d/tauri-plugin-centrifugo",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-centrifugo-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-notifications",
+ "description": "A Tauri v2 plugin for sending notifications on desktop and mobile platforms with support for system notifications and push delivery via FCM and APNs.",
+ "version": "0.3.1",
+ "created_at": "2025-10-07T15:18:41.118545Z",
+ "repository": "https://github.com/Choochmeque/tauri-plugin-notifications",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-notifications"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-libmpv-sys",
+ "description": "Raw FFI bindings for libmpv",
+ "version": "0.0.0",
+ "created_at": "2025-10-03T06:11:17.429114Z",
+ "repository": "https://github.com/nini22P/tauri-plugin-libmpv",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-libmpv-sys"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-sumup-api",
+ "description": "JavaScript bindings for tauri-plugin-sumup - SumUp payment processing for Tauri mobile apps",
+ "version": "0.1.2",
+ "created_at": "2025-10-02T21:57:38.597Z",
+ "repository": "https://github.com/2221ch/tauri-plugin-sumup",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-sumup-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-sumup",
+ "description": "Tauri plugin for SumUp payment processing integration on iOS and Android",
+ "version": "0.1.3",
+ "created_at": "2025-10-02T19:32:53.937415Z",
+ "repository": "https://github.com/2221ch/tauri-plugin-sumup",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-sumup"
+ },
+ {
+ "source": "npm",
+ "name": "@cloudworxx/tauri-plugin-mac-rounded-corners",
+ "description": "Tauri v2 plugin for native macOS rounded corners with customizable Traffic Lights positioning. Auto-repositions after fullscreen. App Store compatible.",
+ "version": "1.1.1",
+ "created_at": "2025-10-02T09:14:53.506Z",
+ "repository": "https://github.com/cloudworxx/tauri-plugin-mac-rounded-corners",
+ "npm": "https://www.npmjs.com/package/%40cloudworxx%2Ftauri-plugin-mac-rounded-corners"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-widget-api",
+ "description": "A Tauri plugin to interact with App Widgets (Android). Allows your Tauri app to shared preferences (Android), and update timeline widgets.",
+ "version": "0.1.1",
+ "created_at": "2025-09-28T14:08:48.241Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-widget-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-widget",
+ "description": "A Tauri plugin to interact with App Widgets (Android). Allows your Tauri app to shared preferences (Android), and update timeline widgets.",
+ "version": "0.1.2",
+ "created_at": "2025-09-28T13:37:44.634281Z",
+ "repository": "https://github.com/fwy13/tauri-plugin-widget",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-widget"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-libmpv",
+ "description": "A Tauri plugin for embedding the mpv player in your app via libmpv.",
+ "version": "0.3.2",
+ "created_at": "2025-09-27T00:52:11.341654Z",
+ "repository": "https://github.com/nini22P/tauri-plugin-libmpv",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-libmpv"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-keygen-rs2-api",
+ "description": "Tauri V2 plugin for Keygen.sh licensing, based on the keygen-rs SDK.",
+ "version": "0.2.4",
+ "created_at": "2025-09-25T04:58:12.947Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-keygen-rs2-api"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-plauth-api",
+ "description": "Tauri plugin for authentication (PLAUTH) supporting macOS and iOS platforms with ASWebAuthenticationSession",
+ "version": "1.0.4",
+ "created_at": "2025-09-24T09:37:42.265Z",
+ "repository": "https://github.com/lecaobaophuc0912/tauri-plugin-plauth",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-plauth-api"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-pldownloader-api",
+ "description": "TypeScript client for the Tauri PLDownloader plugin (Android/iOS).",
+ "version": "1.0.1",
+ "created_at": "2025-09-20T04:16:07.042Z",
+ "repository": "https://github.com/lecaobaophuc0912/tauri-plugin-pldownloader",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-pldownloader-api"
+ },
+ {
+ "source": "npm",
+ "name": "@duttt/tauri-plugin-broadcast-api",
+ "description": "tauri plugin broadcast api",
+ "version": "0.2.0",
+ "created_at": "2025-09-15T09:01:27.304Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/%40duttt%2Ftauri-plugin-broadcast-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-broadcast",
+ "description": "Tauri plugin for broadcast",
+ "version": "0.3.0",
+ "created_at": "2025-09-12T07:21:02.250527Z",
+ "repository": "https://github.com/dote27/tauri-plugin-broadcast",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-broadcast"
+ },
+ {
+ "source": "npm",
+ "name": "@0x330a/tauri-plugin-p256-signer-api",
+ "description": "JS Bindings for the tauri-plugin-p256-signer Tauri plugin",
+ "version": "0.1.2",
+ "created_at": "2025-09-11T12:18:34.710Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/%400x330a%2Ftauri-plugin-p256-signer-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-pldownloader",
+ "description": "Tauri plugin for cross-platform file downloading (Android/iOS) with public/private destinations and a TypeScript client.",
+ "version": "1.0.1",
+ "created_at": "2025-09-10T10:03:00.968530Z",
+ "repository": "https://github.com/lecaobaophuc0912/tauri-plugin-pldownloader",
+ "license": "",
+ "homepage": "https://github.com/lecaobaophuc0912/tauri-plugin-pldownloader",
+ "crates_io": "https://crates.io/crates/tauri-plugin-pldownloader"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-media-api",
+ "description": "Advanced system media control integration plugin for Tauri applications with comprehensive playback controls, rich metadata support, and seamless native OS media interface integration across Windows, macOS, and Linux",
+ "version": "0.1.1",
+ "created_at": "2025-09-08T14:03:53.831Z",
+ "repository": "https://github.com/Taiizor/tauri-plugin-media",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-media-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-media",
+ "description": "Advanced system media control integration plugin for Tauri applications with comprehensive playback controls, rich metadata support, and seamless native OS media interface integration across Windows, macOS, and Linux",
+ "version": "0.1.1",
+ "created_at": "2025-09-06T20:33:33.371542Z",
+ "repository": "https://github.com/Taiizor/tauri-plugin-media",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-media"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-typegen",
+ "description": "DEPRECATED - This crate has been renamed. Please use the new crate: **[tauri-typegen](https://crates.io/crates/tauri-typegen)**",
+ "version": "0.1.6",
+ "created_at": "2025-09-05T17:44:49.261208Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-typegen",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-typegen",
+ "version_npm": "0.1.5"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-biometry",
+ "description": "A Tauri v2 plugin for biometric authentication (Touch ID, Face ID, fingerprint) on Android, macOS, iOS and Windows.",
+ "version": "0.2.5",
+ "created_at": "2025-09-05T15:24:44.799122Z",
+ "repository": "https://github.com/Choochmeque/tauri-plugin-biometry",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-biometry"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-posthog-api",
+ "description": "A Tauri v2 plugin for integrating PostHog analytics - JavaScript/TypeScript API",
+ "version": "0.2.2",
+ "created_at": "2025-09-05T01:44:53.378Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-posthog-api"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-billing-api",
+ "description": "A Tauri plugin to access the Android billing SDK",
+ "version": "0.1.4",
+ "created_at": "2025-09-04T19:18:12.311Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-billing-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-posthog",
+ "description": "A Tauri v2 plugin for integrating PostHog analytics into your Tauri applications",
+ "version": "0.2.4",
+ "created_at": "2025-09-03T15:47:13.081231Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-posthog"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-mpv",
+ "description": "A Tauri plugin for embedding the mpv player in your app by controlling its process via JSON IPC.",
+ "version": "0.5.2",
+ "created_at": "2025-09-03T12:35:12.651202Z",
+ "repository": "https://github.com/nini22P/tauri-plugin-mpv",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-mpv"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-sentry-api",
+ "description": "Tauri Plugin for Sentry",
+ "version": "0.5.0",
+ "created_at": "2025-09-03T11:56:06.706Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-sentry-api"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-pytauri-api",
+ "description": "js api for crate tauri-plugin-pytauri",
+ "version": "0.8.0",
+ "created_at": "2025-09-01T09:14:35.148Z",
+ "repository": "https://github.com/pytauri/pytauri",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-pytauri-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-intent",
+ "description": "Tauri plugin for handling Android and iOS intents.",
+ "version": "0.1.0",
+ "created_at": "2025-09-01T07:01:13.348391Z",
+ "repository": "https://github.com/modeckrus/tauri-plugin-intent",
+ "license": "",
+ "homepage": "https://github.com/modeckrus/tauri-plugin-intent",
+ "crates_io": "https://crates.io/crates/tauri-plugin-intent"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-sharekit",
+ "description": "A Tauri v2 plugin that enables sharing content with native sharing interfaces on Android, iOS, macOS and Windows.",
+ "version": "0.2.4",
+ "created_at": "2025-08-28T13:35:40.919048Z",
+ "repository": "https://github.com/Choochmeque/tauri-plugin-sharekit",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-sharekit"
+ },
+ {
+ "source": "npm",
+ "name": "@bling-yshs/tauri-plugin-toast",
+ "description": "A Tauri plugin for showing toast notifications on Android",
+ "version": "0.0.1",
+ "created_at": "2025-08-27T06:47:03.259Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/%40bling-yshs%2Ftauri-plugin-toast"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-toast",
+ "description": "A Tauri plugin for showing toast notifications on Android",
+ "version": "0.0.2",
+ "created_at": "2025-08-27T06:17:43.182628Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-toast"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-google-auth",
+ "description": "A Tauri v2 plugin that enables Google OAuth authentication",
+ "version": "0.3.4",
+ "created_at": "2025-08-26T16:03:05.412590Z",
+ "repository": "https://github.com/Choochmeque/tauri-plugin-google-auth",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-google-auth"
+ },
+ {
+ "source": "npm",
+ "name": "@mcitem/tauri-plugin-axum",
+ "description": "A Tauri plugin that allows calling Axum Router endpoints directly.",
+ "version": "0.7.1",
+ "created_at": "2025-08-26T07:45:13.961Z",
+ "repository": "https://github.com/mcitem/tauri-plugin-axum",
+ "npm": "https://www.npmjs.com/package/%40mcitem%2Ftauri-plugin-axum"
+ },
+ {
+ "source": "npm",
+ "name": "@inkibra/tauri-plugin-iap",
+ "description": "This plugin provides APIs for handling in-app purchases in Tauri applications, supporting iOS platforms.",
+ "version": "0.2.5",
+ "created_at": "2025-08-25T23:49:53.602Z",
+ "repository": "https://github.com/inkibra/tauri-plugins",
+ "npm": "https://www.npmjs.com/package/%40inkibra%2Ftauri-plugin-iap"
+ },
+ {
+ "source": "npm",
+ "name": "@inkibra/tauri-plugin-ota",
+ "description": "Tauri Plugin for Over-the-Air updates for iOS applications",
+ "version": "0.1.3",
+ "created_at": "2025-08-25T23:49:53.229Z",
+ "repository": "https://github.com/inkibra/tauri-plugins",
+ "npm": "https://www.npmjs.com/package/%40inkibra%2Ftauri-plugin-ota"
+ },
+ {
+ "source": "npm",
+ "name": "@inkibra/tauri-plugin-auth",
+ "description": "This plugin provides authentication APIs for Tauri applications, supporting iOS platforms.",
+ "version": "0.2.5",
+ "created_at": "2025-08-25T23:49:52.891Z",
+ "repository": "https://github.com/inkibra/tauri-plugins",
+ "npm": "https://www.npmjs.com/package/%40inkibra%2Ftauri-plugin-auth"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-safe-area-insets-css",
+ "description": "A Tauri plugin to provide safe area insets CSS variables for mobile apps.",
+ "version": "0.2.0",
+ "created_at": "2025-08-21T15:53:33.182659Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-safe-area-insets-css"
+ },
+ {
+ "source": "npm",
+ "name": "@saurl/tauri-plugin-safe-area-insets-css-api",
+ "description": "",
+ "version": "0.1.0",
+ "created_at": "2025-08-21T15:23:23.480Z",
+ "repository": "https://github.com/saurL/tauri-plugin-safe-area-insets-css",
+ "npm": "https://www.npmjs.com/package/%40saurl%2Ftauri-plugin-safe-area-insets-css-api"
+ },
+ {
+ "source": "npm",
+ "name": "@smbcloud/tauri-plugin-android-tv-check-api",
+ "description": "A Tauri plugin to check if the device is an Android TV device.",
+ "version": "1.1.4",
+ "created_at": "2025-08-21T09:05:24.070Z",
+ "repository": "https://github.com/smbcloudXYZ/tauri-plugin-android-tv-check",
+ "npm": "https://www.npmjs.com/package/%40smbcloud%2Ftauri-plugin-android-tv-check-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-bluetooth-manager",
+ "description": "A Tauri plugin to manage Bluetooth adapters and devices in Linux.",
+ "version": "2.0.2",
+ "created_at": "2025-08-19T14:44:29.499968Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-bluetooth-manager"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-android-tv-check",
+ "description": "A Tauri plugin for checking Android TV devices.",
+ "version": "1.1.1",
+ "created_at": "2025-08-19T14:00:00.772999Z",
+ "repository": "https://github.com/smbcloudXYZ/tauri-plugin-android-tv-check",
+ "license": "",
+ "homepage": "https://github.com/smbcloudXYZ/tauri-plugin-android-tv-check",
+ "crates_io": "https://crates.io/crates/tauri-plugin-android-tv-check"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-authium",
+ "description": "Plugin for Tauri as a wrapper for Authium.",
+ "version": "0.2.2",
+ "created_at": "2025-08-19T13:45:29.735144Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-authium"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-fcm-notifications",
+ "description": "A Tauri plugin for Firebase Cloud Messaging (FCM) notifications",
+ "version": "0.1.8",
+ "created_at": "2025-08-18T06:43:21.987196Z",
+ "repository": "https://github.com/edenstrom/tauri-plugin-fcm-notifications",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-fcm-notifications",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-fcm-notifications",
+ "version_npm": "0.1.4"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-plauth",
+ "description": "Tauri plugin for authentication (PLAUTH) supporting macOS and iOS platforms with ASWebAuthenticationSession",
+ "version": "1.0.4",
+ "created_at": "2025-08-15T03:35:05.171161Z",
+ "repository": "https://github.com/lecaobaophuc0912/tauri-plugin-plauth",
+ "license": "",
+ "homepage": "https://github.com/lecaobaophuc0912/tauri-plugin-plauth",
+ "crates_io": "https://crates.io/crates/tauri-plugin-plauth"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-axum",
+ "description": "A Tauri plugin that allows calling Axum Router endpoints directly.",
+ "version": "0.7.1",
+ "created_at": "2025-08-14T18:59:26.543142Z",
+ "repository": "https://github.com/mcitem/tauri-plugin-axum",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-axum"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-macos-passkey",
+ "description": "Call macOS Passkey registration/login APIs in Tauri apps with ease!",
+ "version": "0.1.0",
+ "created_at": "2025-08-14T03:02:38.769638Z",
+ "repository": "https://github.com/yminghua/tauri-plugin-macos-passkey",
+ "license": "",
+ "homepage": "https://github.com/yminghua/tauri-passkey-demo",
+ "crates_io": "https://crates.io/crates/tauri-plugin-macos-passkey"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-centrifugo",
+ "description": "Tauri plugin for Centrifugo real-time communication using tokio-centrifuge",
+ "version": "0.1.2",
+ "created_at": "2025-08-13T11:52:25.713309Z",
+ "repository": "https://github.com/s00d/tauri-plugin-centrifugo",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-centrifugo"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-duck-api",
+ "description": "",
+ "version": "0.1.1",
+ "created_at": "2025-08-11T11:55:24.178Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-duck-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-iap",
+ "description": "A Tauri v2 plugin that enables In-App Purchases (IAP)",
+ "version": "0.5.0",
+ "created_at": "2025-08-10T15:02:38.022304Z",
+ "repository": "https://github.com/Choochmeque/tauri-plugin-iap",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-iap"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-ios-keyboard",
+ "description": "Tauri plugin for iOS keyboard event handling and management",
+ "version": "0.1.1",
+ "created_at": "2025-08-10T10:41:07.278435Z",
+ "repository": "https://github.com/pineapp/tauri-plugin-ios-keyboard",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-ios-keyboard"
+ },
+ {
+ "source": "npm",
+ "name": "@vnidrop/tauri-plugin-share",
+ "description": "A Tauri plugin for sharing content via the system's share dialog.",
+ "version": "0.2.0",
+ "created_at": "2025-08-08T20:04:38.075Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/%40vnidrop%2Ftauri-plugin-share"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-dragout",
+ "description": "Tauri plugin providing native macOS drag-out (file promise) support",
+ "version": "0.1.1",
+ "created_at": "2025-08-04T23:03:54.319185Z",
+ "repository": "https://github.com/alexqqqqqq777/tauri-plugin-dragout",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-dragout"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-printer-v2",
+ "description": "Tauri plugin for printing",
+ "version": "0.2.4",
+ "created_at": "2025-08-03T03:16:10.123492Z",
+ "repository": "https://github.com/chen-collab/tauri-plugin-printer",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-printer-v2",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-printer-v2",
+ "version_npm": "0.2.4"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-vnidrop-share",
+ "description": "A Tauri plugin for sharing content via the system's share dialog.",
+ "version": "0.2.0",
+ "created_at": "2025-08-02T20:52:41.855254Z",
+ "repository": "https://github.com/vnidrop/plugin-share",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-vnidrop-share"
+ },
+ {
+ "source": "npm",
+ "name": "@0x330a/tauri-plugin-keystore-api",
+ "description": "Interact with the device-native key storage (Android Keystore, iOS Keychain). perform ecdh operations for generating symmetric keys",
+ "version": "2.1.0-alpha.5",
+ "created_at": "2025-08-01T05:40:46.697Z",
+ "repository": "https://github.com/0x330a-public/tauri-plugin-keystore",
+ "npm": "https://www.npmjs.com/package/%400x330a%2Ftauri-plugin-keystore-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-rusqlite2",
+ "description": "Tauri SQLite plugin using rusqlite",
+ "version": "2.2.5",
+ "created_at": "2025-07-30T19:53:15.657834Z",
+ "repository": "https://github.com/razein97/tauri-plugin-rusqlite2",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-rusqlite2"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-apple-music-kit-api",
+ "description": "Tauri plugin for Apple MusicKit integration - TypeScript API bindings",
+ "version": "0.2.7",
+ "created_at": "2025-07-30T18:32:57.442Z",
+ "repository": "https://github.com/patrickquinn/tauri-plugin-apple-music-kit",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-apple-music-kit-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-device",
+ "description": "Tauri plugin for accessing device information",
+ "version": "1.0.0",
+ "created_at": "2025-07-30T15:17:58.053993Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-device",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-device",
+ "version_npm": "1.0.0"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-secure-storage",
+ "description": "Tauri plugin for secure storage using the system's keyring.",
+ "version": "1.4.0",
+ "created_at": "2025-07-30T14:45:22.754089Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-secure-storage",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-secure-storage",
+ "version_npm": "1.4.0"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-pliap",
+ "description": "Tauri plugin for in-app purchases and subscriptions supporting desktop and mobile platforms",
+ "version": "1.0.6",
+ "created_at": "2025-07-28T15:07:15.748181Z",
+ "repository": "https://github.com/lecaobaophuc0912/tauri-plugin-pliap",
+ "license": "",
+ "homepage": "https://github.com/lecaobaophuc0912/tauri-plugin-pliap",
+ "crates_io": "https://crates.io/crates/tauri-plugin-pliap",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-pliap",
+ "version_npm": "1.0.6"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-musickit",
+ "description": "Tauri plugin for Apple MusicKit integration",
+ "version": "0.2.7",
+ "created_at": "2025-07-25T07:52:34.491083Z",
+ "repository": "https://github.com/patrickquinn/tauri-plugin-apple-music-kit",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-musickit"
+ },
+ {
+ "source": "npm",
+ "name": "@kuyoonjo/tauri-plugin-tcp",
+ "description": "This plugin only works with Tauri 2.x only.",
+ "version": "0.1.2",
+ "created_at": "2025-07-21T03:26:55.130Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/%40kuyoonjo%2Ftauri-plugin-tcp"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-schedule-task",
+ "description": "A Tauri plugin for scheduling tasks using cron-like syntax.",
+ "version": "0.1.0",
+ "created_at": "2025-07-15T18:48:00.333702Z",
+ "repository": "https://github.com/charlesschaefer/tauri-plugin-schedule-task",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-schedule-task"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-indexer",
+ "description": "a custom indexer (if the version is 1.0.0 then the plugin is ready)",
+ "version": "0.1.1",
+ "created_at": "2025-07-12T17:55:38.749175Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-indexer"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-apple-music-kit",
+ "description": "Tauri plugin for Apple MusicKit integration",
+ "version": "0.2.5",
+ "created_at": "2025-07-11T13:44:15.224396Z",
+ "repository": "https://github.com/patrickquinn/tauri-plugin-apple-music-kit",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-apple-music-kit"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-ble",
+ "description": "This is an tauri-plugin-ble",
+ "version": "0.1.2",
+ "created_at": "2025-07-10T03:05:50.674878Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-ble"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-web-transport",
+ "description": "A Tauri plugin to polyfill WebTransport (on Safari)",
+ "version": "0.1.0",
+ "created_at": "2025-07-07T20:33:51.414269Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-web-transport"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-sqlite-plus",
+ "description": "Interface with SQL databases.",
+ "version": "0.0.1",
+ "created_at": "2025-07-05T05:52:43.143975Z",
+ "repository": "https://github.com/popo1221/tauri-plugin-sqlite",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-sqlite-plus"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-vicons",
+ "description": "Icon API for Tauri plugins (Created for VasakOS)",
+ "version": "2.0.2",
+ "created_at": "2025-07-04T16:00:24.396257Z",
+ "repository": "https://github.com/Vasak-OS/tauri-plugin-vicons/",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-vicons"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-remote-push-api",
+ "description": "A Tauri plugin for remote push notifications on iOS and Android.",
+ "version": "1.0.10",
+ "created_at": "2025-06-23T16:25:18.065Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-remote-push-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-remote-push",
+ "description": "A Tauri plugin for remote push notifications on iOS and Android.",
+ "version": "1.0.10",
+ "created_at": "2025-06-22T13:40:09.514248Z",
+ "repository": "https://github.com/YOUR_USERNAME/tauri-plugin-remote-push",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-remote-push"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-network-manager",
+ "description": "A Tauri plugin to manage network connections using networkmanager and systemd-networkd.",
+ "version": "2.0.1",
+ "created_at": "2025-06-19T18:36:41.396666Z",
+ "repository": "https://github.com/Vasak-OS/tauri-plugin-network-manager",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-network-manager"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-mobile-share",
+ "description": "A Package for Sharing Tauri Mobile App Content",
+ "version": "0.1.2",
+ "created_at": "2025-06-19T18:05:13.444683Z",
+ "repository": "https://github.com/tactile-eng/tauri-plugin-mobile-share",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-mobile-share",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-mobile-share",
+ "version_npm": "0.1.2"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-config-manager",
+ "description": "A Tauri plugin for managing configuration for Vasak applications.",
+ "version": "2.0.4",
+ "created_at": "2025-06-19T17:46:34.969383Z",
+ "repository": "https://github.com/Vasak-OS/tauri-plugin-config-manager",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-config-manager"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-user-data",
+ "description": "User Data API for Tauri aplications (Created for VasakOS)",
+ "version": "2.0.1",
+ "created_at": "2025-06-19T17:41:47.001789Z",
+ "repository": "https://github.com/Vasak-OS/tauri-plugin-user-data",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-user-data"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-automation",
+ "description": "Tauri plugin for automation via WebDriver",
+ "version": "0.1.1",
+ "created_at": "2025-06-09T19:56:36.435322Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-automation"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-matrix-svelte",
+ "description": "A Tauri plugin that exposes high level Matrix data through Svelte Rune stores",
+ "version": "0.2.0",
+ "created_at": "2025-06-05T09:08:22.383625Z",
+ "repository": "https://github.com/IT-ess/tauri-plugin-matrix-svelte",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-matrix-svelte"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-matrix-svelte-api",
+ "description": "A Tauri plugin that exposes high level Matrix data through Svelte Rune stores",
+ "version": "0.1.0",
+ "created_at": "2025-06-05T08:53:46.956Z",
+ "repository": "https://github.com/IT-ess/tauri-plugin-matrix-svelte",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-matrix-svelte-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-apple-camera",
+ "description": "Plugin for tauri to handle camera in the apple devices",
+ "version": "0.1.0",
+ "created_at": "2025-06-03T12:12:30.327527Z",
+ "repository": "https://github.com/Grano22/tauri-plugin-apple_camera/",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-apple-camera"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-app-control-api",
+ "description": "JS/TS API for Tauri App Control plugin (Android lifecycle).",
+ "version": "0.1.1",
+ "created_at": "2025-05-29T11:43:02.664Z",
+ "repository": "https://github.com/your-username/tauri-plugin-app-control",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-app-control-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-app-control",
+ "description": "A Tauri plugin for Android application lifecycle control (minimize, close, exit, state).",
+ "version": "0.1.1",
+ "created_at": "2025-05-29T11:02:10.383342Z",
+ "repository": "https://github.com/your-username/tauri-plugin-app-control",
+ "license": "",
+ "homepage": "https://github.com/your-username/tauri-plugin-app-control",
+ "crates_io": "https://crates.io/crates/tauri-plugin-app-control"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-holochain-service",
+ "description": "Tauri plugin enabling an Android app to run Holochain as a foreground service",
+ "version": "0.2.3",
+ "created_at": "2025-05-27T00:08:55.626112Z",
+ "repository": "https://github.com/holochain/android-service-runtime",
+ "license": "",
+ "homepage": "https://github.com/holochain/android-service-runtime",
+ "crates_io": "https://crates.io/crates/tauri-plugin-holochain-service"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-holochain-service-client",
+ "description": "Tauri plugin enabling an Android app to run as a client of the tauri-plugin-holochain-service",
+ "version": "0.2.3",
+ "created_at": "2025-05-27T00:08:34.161941Z",
+ "repository": "https://github.com/holochain/android-service-runtime",
+ "license": "",
+ "homepage": "https://github.com/holochain/android-service-runtime",
+ "crates_io": "https://crates.io/crates/tauri-plugin-holochain-service-client"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-torch",
+ "description": "A simple flash/torch control plugin for Tauri applications.",
+ "version": "0.1.0",
+ "created_at": "2025-05-26T07:08:54.468613Z",
+ "repository": "https://github.com/sosweetham/tauri-plugin-torch",
+ "license": "",
+ "homepage": "https://kodski.com",
+ "crates_io": "https://crates.io/crates/tauri-plugin-torch"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-cache",
+ "description": "Advanced disk caching solution for Tauri applications. Provides compression, TTL management, memory caching, automatic cleanup, and cross-platform support. Enhances data access performance and storage optimization.",
+ "version": "0.1.6",
+ "created_at": "2025-05-21T04:17:04.608934Z",
+ "repository": "https://github.com/Taiizor/tauri-plugin-cache",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-cache"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-webauthn-api",
+ "description": "A Tauri plugin for WebAuthn API",
+ "version": "0.2.0",
+ "created_at": "2025-05-16T19:12:33.368Z",
+ "repository": "https://github.com/profiidev/tauri-plugin-webauthn",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-webauthn-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-vue",
+ "description": "Persistence for Tauri and Vue",
+ "version": "2.1.0",
+ "created_at": "2025-05-15T19:12:36.754764Z",
+ "repository": "https://github.com/ferreira-tb/tauri-store",
+ "license": "",
+ "homepage": "https://tb.dev.br/tauri-store/plugin-vue/guide/getting-started",
+ "crates_io": "https://crates.io/crates/tauri-plugin-vue"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-zubridge",
+ "description": "A Tauri plugin for state management between frontend and backend",
+ "version": "0.1.0",
+ "created_at": "2025-05-13T10:46:19.819796Z",
+ "repository": "https://github.com/goosewobbler/zubridge",
+ "license": "",
+ "homepage": "https://github.com/goosewobbler/zubridge/tree/main/packages/tauri-plugin-zubridge",
+ "crates_io": "https://crates.io/crates/tauri-plugin-zubridge"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-webauthn",
+ "description": "a Tauri plugin for WebAuthn",
+ "version": "0.2.0",
+ "created_at": "2025-05-12T21:59:18.703458Z",
+ "repository": "https://github.com/Profiidev/tauri-plugin-webauthn",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-webauthn"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-crypto-hw",
+ "description": "Android/iOS StrongBox/Secure Enclave Bindings+Wrapper for Tauri",
+ "version": "0.1.0",
+ "created_at": "2025-05-12T05:46:09.171979Z",
+ "repository": "https://github.com/auvoid/tauri-plugin-crypto-hw",
+ "license": "",
+ "homepage": "https://auvo.io",
+ "crates_io": "https://crates.io/crates/tauri-plugin-crypto-hw"
+ },
+ {
+ "source": "npm",
+ "name": "@auvo/tauri-plugin-crypto-hw-api",
+ "description": "Android/iOS StrongBox/Secure Enclave Bindings+Wrapper for Tauri.",
+ "version": "0.1.0",
+ "created_at": "2025-05-12T05:38:48.331Z",
+ "repository": "https://github.com/auvoid/tauri-plugin-crypto-hw",
+ "npm": "https://www.npmjs.com/package/%40auvo%2Ftauri-plugin-crypto-hw-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-camera",
+ "description": "A Tauri plugin for accessing the camera on Android devices.",
+ "version": "0.1.4",
+ "created_at": "2025-05-10T13:57:49.393115Z",
+ "repository": "https://github.com/charlesschaefer/tauri-plugin-camera",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-camera",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-camera",
+ "version_npm": "0.1.4"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-macos-permissions-api",
+ "description": "Support for checking and requesting macos system permissions.",
+ "version": "2.3.0",
+ "created_at": "2025-05-06T13:37:54.075Z",
+ "repository": "https://github.com/ayangweb/tauri-plugin-macos-permissions",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-macos-permissions-api"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-screenshots-api",
+ "description": "Get screenshots of windows and monitors.",
+ "version": "2.2.0",
+ "created_at": "2025-05-01T02:55:08.120Z",
+ "repository": "https://github.com/ayangweb/tauri-plugin-screenshots",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-screenshots-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-mcp",
+ "description": "A Tauri plugin for interacting with MCP servers",
+ "version": "0.8.0-alpha.4",
+ "created_at": "2025-04-30T07:32:56.419032Z",
+ "repository": "https://github.com/moeru-ai/airi",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-mcp"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-sqlite-api",
+ "description": "tauri plugin for sqlite",
+ "version": "0.1.2",
+ "created_at": "2025-04-27T03:54:43.775Z",
+ "repository": "https://github.com/return764/tauri-plugin-sqlite",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-sqlite-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-sqlite",
+ "description": "tauri plugin for sqlite",
+ "version": "0.1.1",
+ "created_at": "2025-04-26T09:22:22.065757Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-sqlite"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-mixpanel-api",
+ "description": "Tauri plugin API for Mixpanel analytics",
+ "version": "0.1.0",
+ "created_at": "2025-04-26T05:49:37.624Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-mixpanel-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-mixpanel",
+ "description": "Tauri plugin for Mixpanel analytics",
+ "version": "0.3.1",
+ "created_at": "2025-04-26T05:49:15.175957Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-mixpanel"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-buttonkit",
+ "description": "Tauri plugin for detecting physical button presses on mobile devices",
+ "version": "0.1.0",
+ "created_at": "2025-04-25T14:21:01.418696Z",
+ "repository": "https://github.com/dovaldev/tauri-plugin-buttonkit",
+ "license": "",
+ "homepage": "https://github.com/dovaldev/tauri-plugin-buttonkit",
+ "crates_io": "https://crates.io/crates/tauri-plugin-buttonkit"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-clipboard-x-api",
+ "description": "Supports clipboard change listening and enables reading and writing of various clipboard formats (plain text, rich text, html, image, and files).",
+ "version": "2.0.1",
+ "created_at": "2025-04-23T15:32:46.022Z",
+ "repository": "https://github.com/ayangweb/tauri-plugin-clipboard-x",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-clipboard-x-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-hwinfo",
+ "description": "A cross-platform Tauri plugin to fetch CPU, RAM, GPU, and OS info.",
+ "version": "0.2.3",
+ "created_at": "2025-04-22T23:10:04.979370Z",
+ "repository": "https://github.com/nikolchaa/tauri-plugin-hwinfo",
+ "license": "",
+ "homepage": "https://github.com/nikolchaa/tauri-plugin-hwinfo",
+ "crates_io": "https://crates.io/crates/tauri-plugin-hwinfo",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-hwinfo",
+ "version_npm": "0.2.3"
+ },
+ {
+ "source": "npm",
+ "name": "@redfernelec/tauri-plugin-hid-api",
+ "description": "Frontend bindings for Tauri HID plugin",
+ "version": "0.2.2",
+ "created_at": "2025-04-22T21:48:49.083Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/%40redfernelec%2Ftauri-plugin-hid-api"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-web-auth-api",
+ "description": "Leverage iOS' ASWebAuthenticationSession and Android's Custom Tabs to authenticate users in your Tauri app.",
+ "version": "1.0.0",
+ "created_at": "2025-04-21T20:04:30.724Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-web-auth-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-web-auth",
+ "description": "Leverage iOS' ASWebAuthenticationSession and Android's Custom Tabs to authenticate users in your Tauri app.",
+ "version": "1.0.0",
+ "created_at": "2025-04-21T20:03:58.943022Z",
+ "repository": "https://github.com/Manaf941/tauri-plugin-web_auth",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-web-auth"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-in-app-browser",
+ "description": "Tauri plugin to open browsers in the app (SFSafariViewController & Chrome Custom Tabs)",
+ "version": "1.0.1",
+ "created_at": "2025-04-21T03:06:50.612657Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-in-app-browser"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-in-app-browser-api",
+ "description": "> [!CAUTION] > This was a plugin primarily made for myself. I've made it open-source so that other people could use it, but I'm not willing to document everything. If you do need some help / clarification / changes, you can contact me on Discord / Twitter",
+ "version": "1.0.0",
+ "created_at": "2025-04-21T03:00:24.282Z",
+ "repository": "https://github.com/Manaf941/tauri-plugin-in_app_browser",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-in-app-browser-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-clipboard-x",
+ "description": "Supports clipboard change listening and enables reading and writing of various clipboard formats (plain text, rich text, html, image, and files).",
+ "version": "2.0.1",
+ "created_at": "2025-04-19T15:19:08.496442Z",
+ "repository": "https://github.com/ayangweb/tauri-plugin-clipboard-x",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-clipboard-x"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-persistence",
+ "description": "A wrapper plugin for several persistence backends, focused on managing complex project folders with less boilerplate.",
+ "version": "0.2.1",
+ "created_at": "2025-04-18T18:18:02.396886Z",
+ "repository": "https://github.com/dax-dot-gay/tauri-plugin-persistence",
+ "license": "",
+ "homepage": "https://github.com/dax-dot-gay/tauri-plugin-persistence",
+ "crates_io": "https://crates.io/crates/tauri-plugin-persistence"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-graphql-next",
+ "description": "Tauri plugin for GraphQL",
+ "version": "0.5.0",
+ "created_at": "2025-04-17T10:57:08.220443Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-graphql-next"
+ },
+ {
+ "source": "npm",
+ "name": "@bspeckco/tauri-plugin-sqlite",
+ "description": "A fork of tauri-plugin-sql using rusqlite, supporting only SQLite with added transaction capabilities.",
+ "version": "0.1.7",
+ "created_at": "2025-04-15T11:55:33.983Z",
+ "repository": "https://github.com/bspeckco/tauri-v2-plugin-workspace",
+ "npm": "https://www.npmjs.com/package/%40bspeckco%2Ftauri-plugin-sqlite"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-fs-pro-api",
+ "description": "Extended with additional methods for files and directories.",
+ "version": "2.4.0",
+ "created_at": "2025-04-15T03:26:01.097Z",
+ "repository": "https://github.com/ayangweb/tauri-plugin-fs-pro",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-fs-pro-api"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-packagemanager-api",
+ "description": "A Tauri plugin for interfacing with the Android PackageManager API",
+ "version": "0.2.1",
+ "created_at": "2025-04-12T23:11:35.662Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-packagemanager-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-packagemanager",
+ "description": "A Tauri plugin for interfacing with the Android PackageManager API",
+ "version": "0.2.2",
+ "created_at": "2025-04-12T21:20:28.969668Z",
+ "repository": "https://github.com/jack-weilage/tauri-plugin-packagemanager",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-packagemanager"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-usagestats-api",
+ "description": "A Tauri plugin to interact with the Android UsageStats API",
+ "version": "0.1.1",
+ "created_at": "2025-04-11T03:32:12.633Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-usagestats-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-usagestats",
+ "description": "A Tauri plugin to interact with the Android UsageStats API",
+ "version": "0.1.1",
+ "created_at": "2025-04-11T03:24:07.233675Z",
+ "repository": "https://github.com/jack-weilage/tauri-plugin-usagestats",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-usagestats"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-windows-version",
+ "description": "Get the version number of the current Windows OS.",
+ "version": "2.0.0",
+ "created_at": "2025-04-09T08:09:27.406372Z",
+ "repository": "https://github.com/ayangweb/tauri-plugin-windows-version",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-windows-version"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-windows-version-api",
+ "description": "Get the version number of the current Windows OS.",
+ "version": "2.0.0",
+ "created_at": "2025-04-09T08:07:46.479Z",
+ "repository": "https://github.com/ayangweb/tauri-plugin-windows-version",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-windows-version-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-android-package-install",
+ "description": "This plugin mainly provides package install on android devices.",
+ "version": "2.0.2",
+ "created_at": "2025-04-09T07:14:37.397887Z",
+ "repository": "https://github.com/kingsword09/tauri-plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-android-package-install"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-hid",
+ "description": "A Tauri plugin to provide access to USB HID devices",
+ "version": "0.2.2",
+ "created_at": "2025-04-02T13:32:02.675141Z",
+ "repository": "https://github.com/RedfernElec/tauri-plugin-hid",
+ "license": "",
+ "homepage": "https://github.com/RedfernElec/tauri-plugin-hid",
+ "crates_io": "https://crates.io/crates/tauri-plugin-hid"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-mobile-onbackpressed-listener",
+ "description": "This plugin mainly provides event listener for controlling the onBackpressed action on mobile devices.",
+ "version": "2.0.1",
+ "created_at": "2025-03-29T11:53:34.496354Z",
+ "repository": "https://github.com/kingsword09/tauri-plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-mobile-onbackpressed-listener"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-locale-api",
+ "description": "get the locale of the system.",
+ "version": "2.0.1",
+ "created_at": "2025-03-24T15:23:43.564Z",
+ "repository": "https://github.com/ayangweb/tauri-plugin-locale",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-locale-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-locale",
+ "description": "get the locale of the system.",
+ "version": "2.0.1",
+ "created_at": "2025-03-24T15:07:31.890196Z",
+ "repository": "https://github.com/ayangweb/tauri-plugin-locale",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-locale"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-machine-uid",
+ "description": "A Tauri plugin for retrieving machine UID",
+ "version": "0.1.3",
+ "created_at": "2025-03-24T09:37:09.943346Z",
+ "repository": "https://github.com/SkipperNDT/tauri-plugin-machine-uid",
+ "license": "",
+ "homepage": "https://github.com/SkipperNDT/tauri-plugin-machine-uid",
+ "crates_io": "https://crates.io/crates/tauri-plugin-machine-uid"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-admob",
+ "description": "Tauri Plugin admob",
+ "version": "0.0.4",
+ "created_at": "2025-03-23T11:25:55.542489Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-admob"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-admob-api",
+ "description": "> For now this is just a copy of [admob-plus](https://github.com/admob-plus/admob-plus) in the future I would like to refactor the code to be more Tauri friendly.",
+ "version": "0.0.4",
+ "created_at": "2025-03-23T11:21:31.748Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-admob-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-zustand",
+ "description": "Persistent Zustand stores for Tauri",
+ "version": "1.1.0",
+ "created_at": "2025-03-22T23:52:13.729185Z",
+ "repository": "https://github.com/ferreira-tb/tauri-store",
+ "license": "",
+ "homepage": "https://tb.dev.br/tauri-store/plugin-zustand/guide/getting-started",
+ "crates_io": "https://crates.io/crates/tauri-plugin-zustand"
+ },
+ {
+ "source": "npm",
+ "name": "@voixapp/tauri-plugin-hotkey",
+ "description": "Plugin allows to receive hotkey press and release events",
+ "version": "0.1.15",
+ "created_at": "2025-03-21T19:28:14.757Z",
+ "repository": "https://github.com/voixapp/tauri-plugin-hotkey",
+ "npm": "https://www.npmjs.com/package/%40voixapp%2Ftauri-plugin-hotkey"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-system-info-api",
+ "description": "System Info Plugin for Tauri Apps",
+ "version": "2.0.10",
+ "created_at": "2025-03-18T11:21:02.641Z",
+ "repository": "https://github.com/HuakunShen/tauri-plugin-system-info",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-system-info-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-mic-recorder",
+ "description": "Supports recording audio using a microphone and saving the recorded data as a file.",
+ "version": "2.0.0",
+ "created_at": "2025-03-18T06:58:58.323289Z",
+ "repository": "https://github.com/ayangweb/tauri-plugin-mic-recorder",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-mic-recorder"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-mic-recorder-api",
+ "description": "Supports recording audio using a microphone and saving the recorded data as a file.",
+ "version": "2.0.0",
+ "created_at": "2025-03-18T06:57:36.674Z",
+ "repository": "https://github.com/ayangweb/tauri-plugin-mic-recorder",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-mic-recorder-api"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-deno-api",
+ "description": "Javascript package for tauri plugin deno.",
+ "version": "0.2.0",
+ "created_at": "2025-03-16T20:18:56.514Z",
+ "repository": "https://github.com/marcomq/tauri-plugin-deno",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-deno-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-hotkey",
+ "description": "Tauri Plugin to receive hotkey press and release OS events.\n",
+ "version": "0.1.15",
+ "created_at": "2025-03-13T15:45:53.279890Z",
+ "repository": "https://github.com/voixapp/tauri-plugin-hotkey",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-hotkey"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-sherpa-ncnn",
+ "description": "Real-time Speech recognition plugin for Tauri V2 Android.",
+ "version": "0.1.4",
+ "created_at": "2025-03-09T09:02:04.408168Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-sherpa-ncnn"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-android-prevent-screen-capture",
+ "description": "Prevent screen capture on Tauri app for Android.",
+ "version": "1.0.1",
+ "created_at": "2025-03-06T14:00:57.098339Z",
+ "repository": "https://github.com/aiueo13/tauri-plugin-android-prevent-screen-capture",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-android-prevent-screen-capture"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-shellx-api",
+ "description": "Unlocked Tauri Shell Plugin",
+ "version": "2.0.16",
+ "created_at": "2025-03-03T00:48:03.758Z",
+ "repository": "https://github.com/HuakunShen/tauri-plugin-shellx",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-shellx-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-ios-network-detect",
+ "description": "A plugin that detects iOS network permission status and automatically displays an authorization.",
+ "version": "2.0.1",
+ "created_at": "2025-03-02T02:26:10.009215Z",
+ "repository": "https://github.com/kingsword09/tauri-plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-ios-network-detect"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-deno",
+ "description": "A tauri 2 plugin to use javascript code (deno) in the backend.",
+ "version": "0.2.0",
+ "created_at": "2025-02-28T15:54:50.861482Z",
+ "repository": "https://github.com/marcomq/tauri-plugin-deno",
+ "license": "",
+ "homepage": "https://github.com/marcomq/tauri-plugin-deno",
+ "crates_io": "https://crates.io/crates/tauri-plugin-deno"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-screenshots",
+ "description": "Get screenshots of windows and monitors.",
+ "version": "2.2.0",
+ "created_at": "2025-02-27T14:39:48.917718Z",
+ "repository": "https://github.com/ayangweb/tauri-plugin-screenshots",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-screenshots"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-android-fix-font-size",
+ "description": "Fix font size on Tauri app for Android.",
+ "version": "1.0.2",
+ "created_at": "2025-02-26T13:45:14.787015Z",
+ "repository": "https://github.com/aiueo13/tauri-plugin-android-fix-font-size",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-android-fix-font-size"
+ },
+ {
+ "source": "npm",
+ "name": "@crabnebula/tauri-plugin-drag",
+ "description": "Start a drag operation out of a Tauri window",
+ "version": "2.1.0",
+ "created_at": "2025-02-24T12:17:27.992Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/%40crabnebula%2Ftauri-plugin-drag"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-keystore",
+ "description": "Interact with the device-native key storage (Android Keystore, iOS Keychain).",
+ "version": "2.1.0-alpha.1",
+ "created_at": "2025-02-20T09:40:40.816506Z",
+ "repository": "https://github.com/impierce/tauri-plugin-keystore",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-keystore"
+ },
+ {
+ "source": "npm",
+ "name": "@impierce/tauri-plugin-keystore",
+ "description": "Interact with the device-native key storage (Android Keystore, iOS Keychain).",
+ "version": "2.1.0-alpha.1",
+ "created_at": "2025-02-20T09:29:32.893Z",
+ "repository": "https://github.com/impierce/tauri-plugin-keystore",
+ "npm": "https://www.npmjs.com/package/%40impierce%2Ftauri-plugin-keystore"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-bluetooth-api",
+ "description": "JavaScript API for tauri-plugin-bluetooth",
+ "version": "0.1.1",
+ "created_at": "2025-02-19T10:39:33.515Z",
+ "repository": "https://github.com/26F-Studio/tauri-plugin-bluetooth",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-bluetooth-api"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-app-events-api",
+ "description": "A plugin for tauri@v2 to listen some events on iOS and Android.",
+ "version": "0.2.0",
+ "created_at": "2025-02-17T19:22:20.702Z",
+ "repository": "https://github.com/wtto00/tauri-plugin-app-events",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-app-events-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-bluetooth",
+ "description": "Tauri plugin for Bluetooth Low Energy",
+ "version": "0.1.1",
+ "created_at": "2025-02-16T09:37:30.324111Z",
+ "repository": "https://github.com/26F-Studio/tauri-plugin-bluetooth",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-bluetooth"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-tinys-internal-fs",
+ "description": "This plugin is primarily designed for Tinywang's convenience in developing Tauri applications and is tailored to personal needs only.",
+ "version": "0.1.3",
+ "created_at": "2025-02-14T16:52:24.515710Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-tinys-internal-fs"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-fs-ios-api",
+ "description": "# tauri-plugin-fs-ios",
+ "version": "0.4.0",
+ "created_at": "2025-02-13T05:46:05.386Z",
+ "repository": "https://github.com/kennardpeters/tauri-plugin-fs-ios",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-fs-ios-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-android-fs",
+ "description": "Android file system API for Tauri.",
+ "version": "23.0.1",
+ "created_at": "2025-02-13T00:31:08.818291Z",
+ "repository": "https://github.com/aiueo13/tauri-plugin-android-fs",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-android-fs"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-python-api",
+ "description": "Javascript package for tauri 2 python plugin.",
+ "version": "0.3.4",
+ "created_at": "2025-02-11T17:58:18.616Z",
+ "repository": "https://github.com/marcomq/tauri-plugin-python",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-python-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-billing",
+ "description": "A Tauri plugin to access the Android billing SDK",
+ "version": "0.1.4",
+ "created_at": "2025-02-11T11:32:06.804742Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-billing"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-rspc",
+ "description": "Tauri adapter for rspc",
+ "version": "0.2.2",
+ "created_at": "2025-01-29T02:04:14.153584Z",
+ "repository": "https://github.com/specta-rs/rspc",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-rspc"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-drpc",
+ "description": "A plugin for Tauri that adds support for Discord Rich Presence",
+ "version": "0.1.6",
+ "created_at": "2025-01-26T16:36:47.112228Z",
+ "repository": "https://github.com/smokingplaya/tauri-plugin-drpc",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-drpc",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-drpc",
+ "version_npm": "1.0.3"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-valtio",
+ "description": "Persistent Valtio stores for Tauri",
+ "version": "3.2.0",
+ "created_at": "2025-01-07T01:55:35.033034Z",
+ "repository": "https://github.com/ferreira-tb/tauri-store",
+ "license": "",
+ "homepage": "https://tb.dev.br/tauri-store/plugin-valtio/guide/getting-started",
+ "crates_io": "https://crates.io/crates/tauri-plugin-valtio"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-network-api",
+ "description": "Network Plugin for Tauri Apps",
+ "version": "2.0.5",
+ "created_at": "2025-01-05T21:28:29.734Z",
+ "repository": "https://github.com/HuakunShen/tauri-plugin-network",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-network-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-safe-area-insets",
+ "description": "Tauri plugin for android safe area insets.",
+ "version": "0.1.0",
+ "created_at": "2025-01-05T18:17:12.649720Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-safe-area-insets",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-safe-area-insets",
+ "version_npm": "0.1.0"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-python",
+ "description": "A tauri 2 plugin to use python code in the backend.",
+ "version": "0.3.7",
+ "created_at": "2025-01-04T21:14:03.921080Z",
+ "repository": "https://github.com/marcomq/tauri-plugin-python",
+ "license": "",
+ "homepage": "https://github.com/marcomq/tauri-plugin-python",
+ "crates_io": "https://crates.io/crates/tauri-plugin-python"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-async-wrapper",
+ "description": "A procedural macro for offloading blocking tasks to background threads in Tauri apps, ensuring smooth and responsive performance.",
+ "version": "0.1.2",
+ "created_at": "2025-01-03T16:11:13.635005Z",
+ "repository": "https://github.com/mamahuhu-io/tauri-plugin-async-wrapper",
+ "license": "",
+ "homepage": "https://github.com/mamahuhu-io/tauri-plugin-async-wrapper",
+ "crates_io": "https://crates.io/crates/tauri-plugin-async-wrapper"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-keyring-api",
+ "description": " ",
+ "version": "0.1.1",
+ "created_at": "2024-12-23T20:58:25.541Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-keyring-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-keyring",
+ "description": "A tauri plugin wrapper for the keyring crate",
+ "version": "0.1.0",
+ "created_at": "2024-12-23T16:36:41.540205Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-keyring"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-keepawake-api",
+ "description": "",
+ "version": "0.1.0",
+ "created_at": "2024-12-23T11:49:08.488Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-keepawake-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-keepawake",
+ "description": "A Tauri plugin to keep the system awake",
+ "version": "0.1.1",
+ "created_at": "2024-12-23T11:44:24.351268Z",
+ "repository": "https://github.com/thewh1teagle/tauri-plugin-keepawake",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-keepawake"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-pytauri",
+ "description": "PyTauri plugin for Tauri",
+ "version": "0.8.0",
+ "created_at": "2024-12-21T05:35:29.948514Z",
+ "repository": "https://github.com/pytauri/pytauri/",
+ "license": "",
+ "homepage": "https://github.com/pytauri/pytauri/",
+ "crates_io": "https://crates.io/crates/tauri-plugin-pytauri"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-svelte",
+ "description": "Persistent Svelte stores for Tauri",
+ "version": "3.1.0",
+ "created_at": "2024-12-16T17:04:25.891914Z",
+ "repository": "https://github.com/ferreira-tb/tauri-store",
+ "license": "",
+ "homepage": "https://tb.dev.br/tauri-store/plugin-svelte/guide/getting-started",
+ "crates_io": "https://crates.io/crates/tauri-plugin-svelte"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-is-simulator-api",
+ "description": "A simple Tauri plugin to check if the app is running in a simulator.",
+ "version": "1.0.0",
+ "created_at": "2024-12-16T11:12:55.011Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-is-simulator-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-is-simulator",
+ "description": "A simple Tauri plugin to check if the app is running in a simulator.",
+ "version": "1.0.0",
+ "created_at": "2024-12-16T11:12:48.683535Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-is-simulator"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-is-simulator-temp",
+ "description": "A simple Tauri plugin to check if the app is running in a simulator.",
+ "version": "0.0.0",
+ "created_at": "2024-12-15T19:53:55.227112Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-is-simulator-temp"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-gamepad-api",
+ "description": "A plugin for Tauri that provides a polyfill for Gamepad Web API that works on most common platforms.",
+ "version": "0.0.5",
+ "created_at": "2024-12-06T21:27:07.643Z",
+ "repository": "https://github.com/eugenehp/tauri-plugin-gamepad",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-gamepad-api"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-keygen-rs-api",
+ "description": "Tauri plugin for Keygen.sh licensing, based on keygen-rs",
+ "version": "0.2.3",
+ "created_at": "2024-12-03T00:24:24.592Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-keygen-rs-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-fs-pro",
+ "description": "Extended with additional methods for files and directories.",
+ "version": "2.4.0",
+ "created_at": "2024-11-23T12:14:48.618916Z",
+ "repository": "https://github.com/ayangweb/tauri-plugin-fs-pro",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-fs-pro"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-fs-ios",
+ "description": "A plugin for accessing the filesystem on ios",
+ "version": "0.4.0",
+ "created_at": "2024-11-19T07:35:04.500661Z",
+ "repository": "https://github.com/kennardpeters/tauri-plugin-fs-ios",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-fs-ios"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-m3",
+ "description": "Android Material3/MaterialYou Plugin",
+ "version": "0.2.2",
+ "created_at": "2024-11-18T17:51:37.314719Z",
+ "repository": "https://github.com/0xk1f0/tauri-plugin-m3",
+ "license": "",
+ "homepage": "https://github.com/0xk1f0/tauri-plugin-m3",
+ "crates_io": "https://crates.io/crates/tauri-plugin-m3",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-m3",
+ "version_npm": "0.2.2"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-keychain",
+ "description": "A Tauri keychain plugin",
+ "version": "2.0.2",
+ "created_at": "2024-11-18T07:44:11.760961Z",
+ "repository": "https://github.com/lindongchen/tauri-plugin-keychain",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-keychain",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-keychain",
+ "version_npm": "2.0.1"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-macos-permissions",
+ "description": "Support for checking and requesting macos system permissions.",
+ "version": "2.3.0",
+ "created_at": "2024-11-18T04:40:35.336589Z",
+ "repository": "https://github.com/ayangweb/tauri-plugin-macos-permissions",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-macos-permissions"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-view-api",
+ "description": "A mobile plugin for Tauri for viewing and sharing files.",
+ "version": "0.0.5",
+ "created_at": "2024-11-16T18:57:19.706Z",
+ "repository": "https://github.com/ecmel/tauri-plugin-view",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-view-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-view",
+ "description": "A mobile plugin for Tauri for viewing and sharing files.",
+ "version": "0.0.5",
+ "created_at": "2024-11-16T18:54:03.449179Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-view"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-blec",
+ "description": "BLE-Client plugin for Tauri",
+ "version": "0.8.1",
+ "created_at": "2024-11-12T14:48:34.978139Z",
+ "repository": "https://github.com/MnlPhlp/tauri-plugin-blec",
+ "license": "",
+ "homepage": "https://github.com/MnlPhlp/tauri-plugin-blec",
+ "crates_io": "https://crates.io/crates/tauri-plugin-blec"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-share",
+ "description": "A Tauri share plugin",
+ "version": "2.0.5",
+ "created_at": "2024-11-11T14:05:45.371726Z",
+ "repository": "https://github.com/lindongchen/tauri-plugin-share",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-share",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-share",
+ "version_npm": "2.0.4"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-opener",
+ "description": "Open files and URLs using their default application.",
+ "version": "2.5.2",
+ "created_at": "2024-11-11T14:05:14.617417Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-opener"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-sign-in-with-apple",
+ "description": "Add Sign In With Apple capabilities to your Tauri iOS App.",
+ "version": "1.0.2",
+ "created_at": "2024-11-11T01:32:38.506647Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-sign-in-with-apple"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-polygon",
+ "description": "A plugin for [tauri@v2](https://tauri.app/) to achieve click-through of the tauri main window by allowing developers to define polygons, thus customizing the mouse response area.",
+ "version": "0.1.2",
+ "created_at": "2024-11-10T00:53:35.655246Z",
+ "repository": "https://github.com/houycth/tauri-plugin-polygon",
+ "license": "",
+ "homepage": "https://github.com/houycth/tauri-plugin-polygon",
+ "crates_io": "https://crates.io/crates/tauri-plugin-polygon"
+ },
+ {
+ "source": "npm",
+ "name": "@fabianlars/tauri-plugin-oauth",
+ "description": "A Tauri plugin for spawning a localhost server. Needed for some oauth flows (Login with X).",
+ "version": "2.0.0",
+ "created_at": "2024-11-05T15:18:25.651Z",
+ "repository": "https://github.com/FabianLars/tauri-plugin-oauth",
+ "npm": "https://www.npmjs.com/package/%40fabianlars%2Ftauri-plugin-oauth"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-sharetarget-api",
+ "description": "tauri apps: receive share intents on Android",
+ "version": "0.1.6",
+ "created_at": "2024-11-02T19:52:59.963Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-sharetarget-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-sharetarget",
+ "description": "tauri apps: receive share intents on Android",
+ "version": "0.1.6",
+ "created_at": "2024-11-01T12:46:49.585953Z",
+ "repository": "https://gitlab.com/lafleurdeboum/tauri-plugin-sharetarget",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-sharetarget"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-app-events",
+ "description": "A plugin for tauri@v2 to listen some events on iOS and Android.",
+ "version": "0.2.0",
+ "created_at": "2024-10-28T11:26:22.701467Z",
+ "repository": "https://github.com/wtto00/tauri-plugin-app-events",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-app-events"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-power-manager",
+ "description": "tauri plugin for shut down, reboot or log out operations.",
+ "version": "0.1.1",
+ "created_at": "2024-10-28T03:41:41.399582Z",
+ "repository": "https://github.com/cijiugechu/tauri-plugin-power-manager",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-power-manager"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-app-exit-api",
+ "description": "A plugin for tauri@v2 to exit app.",
+ "version": "0.1.1",
+ "created_at": "2024-10-23T17:00:16.983Z",
+ "repository": "https://github.com/wtto00/tauri-plugin-app-exit",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-app-exit-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-app-exit",
+ "description": "A plugin for tauri@v2 to exit app.",
+ "version": "0.1.1",
+ "created_at": "2024-10-23T13:18:24.946721Z",
+ "repository": "https://github.com/wtto00/tauri-plugin-app-exit",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-app-exit"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-mqtt",
+ "description": "MQTT Client for Tauri App",
+ "version": "0.1.1",
+ "created_at": "2024-10-19T18:33:00.225334Z",
+ "repository": "https://github.com/kuyoonjo/tauri-plugin-mqtt",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-mqtt"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-sentry",
+ "description": "An experimental Tauri Plugin for Sentry",
+ "version": "0.5.0",
+ "created_at": "2024-10-19T11:17:04.535742Z",
+ "repository": "https://github.com/timfish/sentry-tauri",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-sentry"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-tcp",
+ "description": "TCP Socket for Tauri App",
+ "version": "0.1.2",
+ "created_at": "2024-10-19T10:11:55.382402Z",
+ "repository": "https://github.com/kuyoonjo/tauri-plugin-tcp",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-tcp"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-clipboard-api",
+ "description": "[](https://github.com/CrossCopy/tauri-plugin-clipboard/actions/workflows/clippy.yml) [ on macOS for Tauri v2 apps.",
+ "version": "1.0.0",
+ "created_at": "2024-10-03T08:27:20.709Z",
+ "repository": "https://github.com/itseeleeya/tauri-plugin-macos-haptics",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-macos-haptics-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-polodb",
+ "description": "A Tauri plugin to expose the PoloDB embedded database to applications",
+ "version": "0.1.0",
+ "created_at": "2024-09-05T20:17:09.880176Z",
+ "repository": "https://github.com/dax-dot-gay/tauri-plugin-polodb",
+ "license": "",
+ "homepage": "https://github.com/dax-dot-gay/tauri-plugin-polodb",
+ "crates_io": "https://crates.io/crates/tauri-plugin-polodb"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-desktop-underlay",
+ "description": "Tauri plugin for attaching a window to desktop, below icons and above wallpaper.",
+ "version": "0.2.0",
+ "created_at": "2024-09-03T19:28:47.484141Z",
+ "repository": "https://github.com/Charlie-XIAO/tauri-plugin-desktop-underlay",
+ "license": "",
+ "homepage": "https://github.com/Charlie-XIAO/tauri-plugin-desktop-underlay",
+ "crates_io": "https://crates.io/crates/tauri-plugin-desktop-underlay"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-keep-screen-on-api",
+ "description": "Tauri plugin that provides commands to disable automatic screen dimming in Adroid and iOS.",
+ "version": "0.1.4",
+ "created_at": "2024-08-30T16:47:34.780Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-keep-screen-on-api"
+ },
+ {
+ "source": "npm",
+ "name": "@buildyourwebapp/tauri-plugin-sharesheet",
+ "description": "Share content to other apps via the Android Sharesheet or iOS Share Pane.",
+ "version": "0.0.1",
+ "created_at": "2024-08-29T19:21:20.054Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/%40buildyourwebapp%2Ftauri-plugin-sharesheet"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-sharesheet",
+ "description": "Share content with the Android Sharesheet and iOS Share Pane.",
+ "version": "0.0.1",
+ "created_at": "2024-08-29T19:20:41.713392Z",
+ "repository": "https://github.com/buildyourwebapp/tauri-plugin-sharesheet",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-sharesheet"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-ota-updater",
+ "description": "Over-the-air updates for the Web assets in a Tauri app.",
+ "version": "2.0.5",
+ "created_at": "2024-08-28T14:28:45.645958Z",
+ "repository": "https://github.com/crabnebula-dev/tauri-plugin-ota-updater",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-ota-updater"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-keygen-rs",
+ "description": "Tauri plugin for Keygen.sh licensing, based on keygen-rs",
+ "version": "0.7.0",
+ "created_at": "2024-08-27T09:29:12.898465Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-keygen-rs"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-macos-haptics",
+ "description": "Utilize the Taptic Engine (TM) on macOS for Tauri v2 apps.",
+ "version": "1.0.0",
+ "created_at": "2024-08-24T01:27:45.114261Z",
+ "repository": "https://github.com/itseeleeya/tauri-plugin-macos-haptics",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-macos-haptics"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-keep-screen-on",
+ "description": "A Tauri plugin that prevents screen timeout on Android and iOS",
+ "version": "0.1.4",
+ "created_at": "2024-08-03T15:57:39.645935Z",
+ "repository": "https://gitlab.com/cristofa/tauri-plugin-keep-screen-on",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-keep-screen-on"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-trafficlights-positioner",
+ "description": "A Tauri v1 plugin to help setting the position of the window traffic lights on macOS.",
+ "version": "1.0.0",
+ "created_at": "2024-08-02T20:43:34.551883Z",
+ "repository": "https://github.com/itseeleeya/tauri-plugin-trafficlights-positioner/",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-trafficlights-positioner"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-haptics",
+ "description": "Haptic feedback and vibrations on Android and iOS",
+ "version": "2.3.2",
+ "created_at": "2024-08-02T15:16:59.448081Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-haptics"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-geolocation",
+ "description": "Get and track the device's current position",
+ "version": "2.3.2",
+ "created_at": "2024-08-02T15:13:06.821410Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-geolocation"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-tauri",
+ "description": "Tauri is a reserved Tauri plugin name",
+ "version": "2.0.0-beta.0",
+ "created_at": "2024-07-30T19:47:46.922046Z",
+ "repository": "https://github.com/tauri-apps/reserved-plugins",
+ "license": "",
+ "homepage": "https://tauri.app/",
+ "crates_io": "https://crates.io/crates/tauri-plugin-tauri"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-core",
+ "description": "Core is a reserved Tauri plugin name",
+ "version": "2.0.0-beta.0",
+ "created_at": "2024-07-30T19:45:09.708472Z",
+ "repository": "https://github.com/tauri-apps/tauri-plugin-core",
+ "license": "",
+ "homepage": "https://tauri.app/",
+ "crates_io": "https://crates.io/crates/tauri-plugin-core"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-structure-manager",
+ "description": "A Tauri plugin for managing application structure, including directory and file creation and validation. This plugin helps ensure that the necessary project structure is maintained and allows for easy setup and verification of the application's file system.",
+ "version": "0.3.8",
+ "created_at": "2024-07-27T01:15:47.665294Z",
+ "repository": "https://github.com/HubioLabs/tauri-plugin-structure-manager",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-structure-manager"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-accept-cookie",
+ "description": "A Tauri plugin for accept cookie in android.",
+ "version": "1.0.0",
+ "created_at": "2024-07-16T09:24:19.549184Z",
+ "repository": "https://github.com/Cinea4678/tauri-plugin-accept-cookie",
+ "license": "",
+ "homepage": "https://github.com/Cinea4678/tauri-plugin-accept-cookie",
+ "crates_io": "https://crates.io/crates/tauri-plugin-accept-cookie"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-status-bar-color-api",
+ "description": "A Tauri plugin for set status bar's color.",
+ "version": "1.0.0",
+ "created_at": "2024-07-09T15:29:42.983Z",
+ "repository": "https://github.com/Cinea4678/tauri-plugin-status-bar-color",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-status-bar-color-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-status-bar-color",
+ "description": "A Tauri plugin for set status bar's color.",
+ "version": "1.0.0",
+ "created_at": "2024-07-09T15:29:34.154276Z",
+ "repository": "https://github.com/Cinea4678/tauri-plugin-status-bar-color",
+ "license": "",
+ "homepage": "https://github.com/Cinea4678/tauri-plugin-status-bar-color",
+ "crates_io": "https://crates.io/crates/tauri-plugin-status-bar-color"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-swipe-back-ios",
+ "description": "swiping gesture navigation support in iOS",
+ "version": "1.0.0",
+ "created_at": "2024-07-09T06:28:10.276867Z",
+ "repository": "https://github.com/Cinea4678/tauri-plugin-swipe-back-ios",
+ "license": "",
+ "homepage": "https://github.com/Cinea4678/tauri-plugin-swipe-back-ios",
+ "crates_io": "https://crates.io/crates/tauri-plugin-swipe-back-ios"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-pinia",
+ "description": "Persistent Pinia stores for Tauri",
+ "version": "4.1.0",
+ "created_at": "2024-07-05T00:23:57.162128Z",
+ "repository": "https://github.com/ferreira-tb/tauri-store",
+ "license": "",
+ "homepage": "https://tb.dev.br/tauri-store/plugin-pinia/guide/getting-started",
+ "crates_io": "https://crates.io/crates/tauri-plugin-pinia"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-prevent-default",
+ "description": "Disable default browser shortcuts",
+ "version": "4.0.3",
+ "created_at": "2024-07-01T03:44:36.450244Z",
+ "repository": "https://github.com/ferreira-tb/tauri-plugin-prevent-default",
+ "license": "",
+ "homepage": "https://github.com/ferreira-tb/tauri-plugin-prevent-default",
+ "crates_io": "https://crates.io/crates/tauri-plugin-prevent-default"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-hal-steamworks",
+ "description": "Tauri plugin for steamworks that used in HAL",
+ "version": "0.0.4",
+ "created_at": "2024-06-28T19:53:42.746258Z",
+ "repository": "https://github.com/HALLauncher/hal-steam-tools",
+ "license": "",
+ "homepage": "https://github.com/HALLauncher/hal-steam-tools",
+ "crates_io": "https://crates.io/crates/tauri-plugin-hal-steamworks"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-state",
+ "description": "Dead simple state management for tauri",
+ "version": "0.1.0",
+ "created_at": "2024-06-26T13:16:35.499221Z",
+ "repository": "https://github.com/glowsquid-launcher/glowsquid",
+ "license": "",
+ "homepage": "https://github.com/glowsquid-launcher/glowsquid/tree/dev/libs/tauri-plugin-state",
+ "crates_io": "https://crates.io/crates/tauri-plugin-state"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-oblivion",
+ "description": "Tauri plugin for oblivion",
+ "version": "0.1.0",
+ "created_at": "2024-06-19T14:35:45.679415Z",
+ "repository": "https://github.com/noctisynth/tauri-plugin-oblivion",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-oblivion"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-shellx",
+ "description": "Unlocked Tauri Shell Plugin",
+ "version": "2.0.16",
+ "created_at": "2024-06-19T07:08:55.439982Z",
+ "repository": "https://github.com/HuakunShen/tauri-plugin-shellx",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-shellx"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-keygen",
+ "description": "A Tauri Plugin for Keygen.sh Licensing",
+ "version": "0.1.0",
+ "created_at": "2024-06-18T16:19:51.029295Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-keygen"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-penetrable",
+ "description": "Using the win32api to achieve click-through of the tauri main window",
+ "version": "0.1.4",
+ "created_at": "2024-06-14T10:50:07.523227Z",
+ "repository": "https://github.com/sner21/tauri-plugin-penetrable",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-penetrable"
+ },
+ {
+ "source": "npm",
+ "name": "@kuyoonjo/tauri-plugin-udp",
+ "description": "## Install",
+ "version": "0.1.1",
+ "created_at": "2024-06-04T06:55:00.023Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/%40kuyoonjo%2Ftauri-plugin-udp"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-udp",
+ "description": "UDP Socket for Tauri App",
+ "version": "0.1.2",
+ "created_at": "2024-06-04T05:54:39.517629Z",
+ "repository": "https://github.com/kuyoonjo/tauri-plugin-udp",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-udp"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-board",
+ "description": "vending machine development board of kits for tauri, use kotlin",
+ "version": "1.7.6",
+ "created_at": "2024-06-03T09:53:26.071657Z",
+ "repository": "https://github.com/cakioe/tauri-plugin-board",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-board"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-appearance",
+ "description": "Dynamically change Tauri App theme",
+ "version": "0.5.0",
+ "created_at": "2024-05-29T08:07:46.132230Z",
+ "repository": "https://github.com/kuyoonjo/tauri-plugin-theme",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-appearance"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-printer-sujin999",
+ "description": "Tauri Plugin for printer access (Edit)",
+ "version": "1.0.15",
+ "created_at": "2024-05-29T05:16:34.620398Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-printer-sujin999"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-holochain",
+ "description": "Ship holochain apps to all platforms",
+ "version": "0.0.0",
+ "created_at": "2024-05-27T11:16:32.149602Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-holochain"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-devtools-app",
+ "description": "Connect with the Devtools for Tauri application",
+ "version": "2.0.1",
+ "created_at": "2024-05-23T14:29:27.585228Z",
+ "repository": "https://github.com/crabnebula-dev/devtools",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-devtools-app"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-decorum",
+ "description": "Opnionated window decoration controls for Tauri apps.",
+ "version": "1.1.1",
+ "created_at": "2024-05-13T00:24:25.986048Z",
+ "repository": "https://github.com/clearlysid/tauri-plugin-decorum",
+ "license": "",
+ "homepage": "https://github.com/clearlysid/tauri-plugin-decorum",
+ "crates_io": "https://crates.io/crates/tauri-plugin-decorum"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-theme-v1",
+ "description": "Dynamically change Tauri App theme",
+ "version": "0.2.1",
+ "created_at": "2024-05-11T03:05:43.469711Z",
+ "repository": "https://github.com/wyhaya/tauri-plugin-theme",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-theme-v1"
+ },
+ {
+ "source": "npm",
+ "name": "@kuyoonjo/tauri-plugin-theme-api",
+ "description": "Dynamically change Tauri App theme",
+ "version": "0.2.0",
+ "created_at": "2024-05-11T03:05:02.947Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/%40kuyoonjo%2Ftauri-plugin-theme-api"
+ },
+ {
+ "source": "npm",
+ "name": "@kuyoonjo/tauri-plugin-serialport-api",
+ "description": "A tauri plugin developed based on Serialport.",
+ "version": "0.1.3",
+ "created_at": "2024-05-07T06:05:52.291Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/%40kuyoonjo%2Ftauri-plugin-serialport-api"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-rusqlite-api",
+ "description": "Tauri Plugin based on Rusqlite",
+ "version": "0.4.4",
+ "created_at": "2024-04-19T03:59:40.448Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-rusqlite-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-serialport-v1",
+ "description": "A tauri plugin developed based on Serialport.",
+ "version": "0.1.0",
+ "created_at": "2024-04-18T07:14:35.923509Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-serialport-v1"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-nosleep-api-fork",
+ "description": "Tauri plugin to block the power save functionality in the OS",
+ "version": "0.1.3",
+ "created_at": "2024-04-10T21:23:41.483Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-nosleep-api-fork"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-openurl",
+ "description": "open url in default browser (just like target blank) in Tauri",
+ "version": "0.1.0",
+ "created_at": "2024-04-08T15:51:28.331877Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-openurl"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-cors-fetch",
+ "description": "Enabling Cross-Origin Resource Sharing (CORS) for Fetch Requests within Tauri applications.",
+ "version": "4.1.0",
+ "created_at": "2024-03-23T16:31:06.822451Z",
+ "repository": "https://github.com/idootop/tauri-plugin-cors-fetch",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-cors-fetch"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-rusqlite",
+ "description": "Tauri Plugin based on Rusqlite",
+ "version": "0.4.4",
+ "created_at": "2024-03-21T02:38:14.440739Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-rusqlite"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-fanto",
+ "description": "tauri plugin fantoccini integrated with webdriver-downloader",
+ "version": "0.2.0",
+ "created_at": "2024-03-09T09:26:30.053791Z",
+ "repository": "https://github.com/seongs1024/tauri-plugin-fanto",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-fanto"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-zippy",
+ "description": "an async-first virtual file store with an accompanying Tauri plugin",
+ "version": "0.0.0",
+ "created_at": "2024-02-17T02:43:30.638836Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-zippy"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-zustand-storage-api",
+ "description": "A Tauri plugin for zustand storage",
+ "version": "0.1.9",
+ "created_at": "2024-02-13T04:25:19.337Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-zustand-storage-api"
+ },
+ {
+ "source": "npm",
+ "name": "@thenbe/tauri-plugin-serialport-api",
+ "description": "A tauri plugin developed based on Serialport.",
+ "version": "1.0.0",
+ "created_at": "2024-02-12T20:20:37.148Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/%40thenbe%2Ftauri-plugin-serialport-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-zustand-storage",
+ "description": "A Tauri plugin for zustand storage",
+ "version": "0.1.9",
+ "created_at": "2024-02-12T13:33:43.007699Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-zustand-storage"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-screen-lock-status",
+ "description": "This plugin helps track the lock status for the current session",
+ "version": "0.1.2",
+ "created_at": "2024-02-07T20:14:32.617704Z",
+ "repository": "https://github.com/ren40/tauri-plugin-screen-lock-status",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-screen-lock-status"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-serialplugin",
+ "description": "Access the current process of your Tauri application.",
+ "version": "2.21.1",
+ "created_at": "2024-02-04T17:10:32.146073Z",
+ "repository": "https://github.com/s00d/tauri-plugin-serialplugin",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-serialplugin",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-serialplugin",
+ "version_npm": "2.17.1"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-drag-as-window",
+ "description": "Start a drag operation from a DOM element to its own window",
+ "version": "2.1.0",
+ "created_at": "2024-01-31T11:25:57.688907Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-drag-as-window"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-midi",
+ "description": "A WebMIDI-compatible plugin for Tauri",
+ "version": "0.1.5",
+ "created_at": "2024-01-26T14:34:17.964557Z",
+ "repository": "https://github.com/specta-rs/tauri-plugin-midi",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-midi",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-midi",
+ "version_npm": "0.0.0"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-manatsu",
+ "description": "Manatsu plugin for Tauri",
+ "version": "0.0.0",
+ "created_at": "2023-12-31T08:41:51.635389Z",
+ "repository": "https://github.com/ferreira-tb/manatsu",
+ "license": "",
+ "homepage": "https://github.com/ferreira-tb/manatsu",
+ "crates_io": "https://crates.io/crates/tauri-plugin-manatsu"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-nfc",
+ "description": "Read and write NFC tags on Android and iOS.",
+ "version": "2.3.3",
+ "created_at": "2023-12-20T03:33:13.069225Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-nfc"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-biometric",
+ "description": "Prompt the user for biometric authentication on Android and iOS.",
+ "version": "2.3.2",
+ "created_at": "2023-12-20T03:14:28.114171Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-biometric"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-pty",
+ "description": "Pseudo Terminal (PTY) plugin for Tauri",
+ "version": "0.1.1",
+ "created_at": "2023-12-19T16:34:31.214708Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-pty"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-gamepad",
+ "description": "A plugin for Tauri that provides a polyfill for Gamepad Web API that works on most common platforms.",
+ "version": "0.0.5",
+ "created_at": "2023-12-13T19:01:28.033668Z",
+ "repository": "https://github.com/DeveloperMindset-com/tauri-plugin-gamepad",
+ "license": "",
+ "homepage": "https://developermindset.com/tauri-plugin-gamepad/",
+ "crates_io": "https://crates.io/crates/tauri-plugin-gamepad"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-drag",
+ "description": "Start a drag operation out of a Tauri window",
+ "version": "2.1.0",
+ "created_at": "2023-12-07T14:49:55.050846Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-drag"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-nosleep-api",
+ "description": "Tauri plugin to block the power save functionality in the OS",
+ "version": "0.1.1",
+ "created_at": "2023-11-08T16:21:55.062Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-nosleep-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-theme",
+ "description": "Dynamically change Tauri App theme",
+ "version": "1.0.0",
+ "created_at": "2023-09-29T10:13:30.880553Z",
+ "repository": "https://github.com/wyhaya/tauri-plugin-theme",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-theme"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-devtools",
+ "description": "CrabNebula devtools for Tauri: Inspect, monitor, and understand your application with ease.",
+ "version": "2.0.1",
+ "created_at": "2023-09-18T15:56:22.944599Z",
+ "repository": "https://github.com/crabnebula-dev/devtools",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-devtools"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-barcode-scanner",
+ "description": "Scan QR codes, EAN-13 and other kinds of barcodes on Android and iOS",
+ "version": "2.4.2",
+ "created_at": "2023-09-14T14:47:03.532712Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-barcode-scanner"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-network",
+ "description": "A tauri plugin for retrieving system info",
+ "version": "2.0.4",
+ "created_at": "2023-08-17T18:53:20.102506Z",
+ "repository": "https://github.com/HuakunShen/tauri-plugin-network",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-network"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-system-info",
+ "description": "A tauri plugin for retrieving system info",
+ "version": "2.0.9",
+ "created_at": "2023-08-16T21:59:45.585695Z",
+ "repository": "https://github.com/HuakunShen/tauri-plugin-system-info",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-system-info"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-context-menu",
+ "description": "Handle native Context Menu in Tauri",
+ "version": "0.8.2",
+ "created_at": "2023-07-30T21:12:19.141107Z",
+ "repository": "https://github.com/c2r0b/tauri-plugin-context-menu",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-context-menu",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-context-menu",
+ "version_npm": "0.8.0"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-open",
+ "description": "A Tauri plugin to open files and URLs in the user's default application.",
+ "version": "0.1.2",
+ "created_at": "2023-06-24T12:45:37.879270Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-open"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-printer",
+ "description": "Tauri Plugin for printer access",
+ "version": "1.0.10",
+ "created_at": "2023-05-29T06:00:44.426923Z",
+ "repository": "https://github.com/alfianlensundev/tauri-plugin-printer",
+ "license": "",
+ "homepage": "https://crates.io/crates/tauri-plugin-printer",
+ "crates_io": "https://crates.io/crates/tauri-plugin-printer",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-printer",
+ "version_npm": "1.0.12"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-window",
+ "description": "Interact with the Tauri window.",
+ "version": "2.0.0-alpha.2",
+ "created_at": "2023-05-24T21:40:25.598628Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-window"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-websocket",
+ "description": "Expose a WebSocket server to your Tauri frontend.",
+ "version": "2.4.1",
+ "created_at": "2023-05-24T21:37:34.655710Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-websocket"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-upload",
+ "description": "Upload files from disk to a remote server over HTTP.",
+ "version": "2.3.2",
+ "created_at": "2023-05-24T21:34:39.827317Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-upload"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-updater",
+ "description": "In-app updates for Tauri applications.",
+ "version": "2.9.0",
+ "created_at": "2023-05-24T21:31:49.295222Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-updater"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-stronghold",
+ "description": "Store secrets and keys using the IOTA Stronghold secret management engine.",
+ "version": "2.3.1",
+ "created_at": "2023-05-24T21:28:47.200017Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-stronghold"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-store",
+ "description": "Simple, persistent key-value store.",
+ "version": "2.4.1",
+ "created_at": "2023-05-24T21:24:52.196599Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-store"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-sql",
+ "description": "Interface with SQL databases.",
+ "version": "2.3.1",
+ "created_at": "2023-05-24T21:21:58.281987Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-sql"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-single-instance",
+ "description": "Ensure a single instance of your tauri app is running.",
+ "version": "2.3.6",
+ "created_at": "2023-05-24T20:40:08.720212Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-single-instance"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-shell",
+ "description": "Access the system shell. Allows you to spawn child processes and manage files and URLs using their default application.",
+ "version": "2.3.3",
+ "created_at": "2023-05-24T20:36:00.493906Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-shell"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-process",
+ "description": "Access the current process of your Tauri application.",
+ "version": "2.3.1",
+ "created_at": "2023-05-24T20:32:11.377661Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-process"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-os",
+ "description": "Read information about the operating system.",
+ "version": "2.3.2",
+ "created_at": "2023-05-24T16:27:55.427696Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-os"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-notification",
+ "description": "Send desktop and mobile notifications on your Tauri application.",
+ "version": "2.3.3",
+ "created_at": "2023-05-24T16:24:02.512921Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-notification"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-log",
+ "description": "Configurable logging for your Tauri app.",
+ "version": "2.7.1",
+ "created_at": "2023-05-24T16:19:42.969124Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-log"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-http",
+ "description": "Access an HTTP client written in Rust.",
+ "version": "2.5.4",
+ "created_at": "2023-05-24T15:34:07.625082Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-http"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-global-shortcut",
+ "description": "Register global hotkeys listeners on your Tauri application.",
+ "version": "2.3.1",
+ "created_at": "2023-05-24T15:30:28.856884Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-global-shortcut"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-dialog",
+ "description": "Native system dialogs for opening and saving files along with message dialogs on your Tauri application.",
+ "version": "2.4.2",
+ "created_at": "2023-05-24T15:26:37.142281Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-dialog"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-fs",
+ "description": "Access the file system.",
+ "version": "2.4.4",
+ "created_at": "2023-05-24T15:22:51.462555Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-fs"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-clipboard-manager",
+ "description": "Read and write to the system clipboard.",
+ "version": "2.3.2",
+ "created_at": "2023-05-24T15:12:59.351289Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-clipboard-manager"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-cli",
+ "description": "Parse arguments from your Tauri application's command line interface.",
+ "version": "2.4.1",
+ "created_at": "2023-05-24T14:28:14.493975Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-cli"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-autostart",
+ "description": "Automatically launch your application at startup.",
+ "version": "2.5.1",
+ "created_at": "2023-05-24T14:25:16.564853Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-autostart"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-authenticator",
+ "description": "Use hardware security-keys in your Tauri App.",
+ "version": "2.0.0-rc.1",
+ "created_at": "2023-05-24T14:22:22.314058Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-authenticator"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-app",
+ "description": "APIs to read application metadata and change app visibility on macOS.",
+ "version": "2.0.0-alpha.2",
+ "created_at": "2023-05-24T14:19:12.543768Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-app"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-store-api",
+ "description": "Simple, persistent key-value store.",
+ "version": "0.0.0",
+ "created_at": "2023-05-05T09:17:59.741Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-store-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-oauth",
+ "description": "A Tauri plugin for spawning a localhost server. Needed for some oauth flows (Login with X).",
+ "version": "2.0.0",
+ "created_at": "2023-04-07T13:45:38.697495Z",
+ "repository": "https://github.com/FabianLars/tauri-plugin-oauth",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-oauth"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-spotlight-api",
+ "description": "Tauri plugin that provides a MacOS Spotlight-like search functionality for Tauri windows.",
+ "version": "0.1.2",
+ "created_at": "2023-04-01T11:13:25.643Z",
+ "repository": "https://github.com/zzzze/tauri-plugin-spotlight",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-spotlight-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-wallpaper",
+ "description": "A Tauri plugin to set your window as wallpaper behind desktop icons",
+ "version": "2.0.2",
+ "created_at": "2023-03-29T20:27:25.373070Z",
+ "repository": "https://github.com/meslzy/tauri-plugin-wallpaper",
+ "license": "",
+ "homepage": "https://github.com/meslzy/tauri-plugin-wallpaper",
+ "crates_io": "https://crates.io/crates/tauri-plugin-wallpaper",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-wallpaper",
+ "version_npm": "2.0.2"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-aptabase",
+ "description": "Tauri Plugin for Aptabase: Open Source, Privacy-First and Simple Analytics for Mobile, Desktop and Web Apps",
+ "version": "1.0.0",
+ "created_at": "2023-03-24T16:26:33.099782Z",
+ "repository": "https://github.com/aptabase/tauri-plugin-aptabase",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-aptabase"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-deep-link",
+ "description": "Set your Tauri application as the default handler for an URL",
+ "version": "2.4.5",
+ "created_at": "2023-02-27T21:03:31.009259Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-deep-link"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-spotlight",
+ "description": "A Tauri plugin that provides a MacOS Spotlight-like search functionality for Tauri windows.",
+ "version": "0.2.0",
+ "created_at": "2023-02-19T09:54:55.742452Z",
+ "repository": "https://github.com/zzzze/tauri-plugin-spotlight",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-spotlight"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-http-ext",
+ "description": "Tauri plugin http ext api",
+ "version": "1.0.1",
+ "created_at": "2023-01-27T03:53:11.829388Z",
+ "repository": "https://github.com/ardyfeb/tauri-plugin-http-ext",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-http-ext"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-clipboard",
+ "description": "A clipboard plugin for Tauri that supports text, html, rtf, files and image, as well as clipboard update listening.",
+ "version": "2.1.11",
+ "created_at": "2023-01-19T21:55:59.032589Z",
+ "repository": "https://github.com/CrossCopy/tauri-plugin-clipboard",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-clipboard"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-graphql-urql",
+ "description": "A plugin for Tauri that enables type-safe IPC through GraphQL.",
+ "version": "2.0.3",
+ "created_at": "2023-01-10T12:56:46.577Z",
+ "repository": "https://github.com/JonasKruckenberg/tauri-plugin-graphql",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-graphql-urql"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-reqwest",
+ "description": "定制化tauri-plugin-reqwest",
+ "version": "0.0.4",
+ "created_at": "2022-10-30T04:30:21.688Z",
+ "repository": "https://github.com/ddchef/tauri-plugin-reqwest",
+ "npm": "https://www.npmjs.com/package/tauri-plugin-reqwest"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-persisted-scope",
+ "description": "Save filesystem and asset scopes and restore them when the app is reopened.",
+ "version": "2.3.4",
+ "created_at": "2022-06-19T22:44:39.603666Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-persisted-scope"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-window-state",
+ "description": "Save window positions and sizes and restore them when the app is reopened.",
+ "version": "2.4.1",
+ "created_at": "2022-06-19T22:15:38.373663Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-window-state"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-localhost",
+ "description": "Expose your apps assets through a localhost server instead of the default custom protocol.",
+ "version": "2.3.1",
+ "created_at": "2022-06-19T19:15:12.380030Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-localhost"
+ },
+ {
+ "source": "npm",
+ "name": "tauri-plugin-positioner-api",
+ "description": "Helps positioning your tauri windows.",
+ "version": "0.2.7",
+ "created_at": "2022-06-16T12:15:12.749Z",
+ "repository": null,
+ "npm": "https://www.npmjs.com/package/tauri-plugin-positioner-api"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-nosleep",
+ "description": "Tauri plugin to prevent the power save functionality in the OS",
+ "version": "2.0.0-beta.1",
+ "created_at": "2022-05-08T13:10:22.304528Z",
+ "repository": null,
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-nosleep"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-graphql",
+ "description": "A plugin for Tauri that enables type-safe IPC through GraphQL.",
+ "version": "2.1.0",
+ "created_at": "2022-03-30T19:24:49.393982Z",
+ "repository": "https://github.com/JonasKruckenberg/tauri-plugin-graphql",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-graphql"
+ },
+ {
+ "source": "crates",
+ "name": "tauri-plugin-positioner",
+ "description": "Position your windows at well-known locations.",
+ "version": "2.3.1",
+ "created_at": "2021-11-19T17:57:01.428784Z",
+ "repository": "https://github.com/tauri-apps/plugins-workspace",
+ "license": "",
+ "homepage": "",
+ "crates_io": "https://crates.io/crates/tauri-plugin-positioner"
+ }
+ ]
+}