mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-29 12:06:01 +02:00
75617a6a92
* feat: android deeplinks * feat: explicit app link declarations * feat: add ios code * fix: add ios deeplink adaptation * feat: ios working (some swift plugin api improvements needed) * fix: revert ios to prior logic * fix(cleanup): regen android files with old names * fix: web link criteria * fix: conditional auto verify intent filter for android app links * fix: default to true * fix: typo * fix: pnpm version * cleanup * fix: web link regression * trim androidmanifest update * fix deep link validation broken due to appLink=true default * implement update_info_plist from https://github.com/tauri-apps/tauri/pull/13888 * fix: remove old patch crates * fix: use latest patch tauri * lint --------- Co-authored-by: Lucas Nogueira <lucas@tauri.app>
34 lines
799 B
JSON
34 lines
799 B
JSON
{
|
|
"name": "@tauri-apps/plugin-deep-link",
|
|
"version": "2.4.1",
|
|
"description": "Set your Tauri application as the default handler for an URL",
|
|
"license": "MIT OR Apache-2.0",
|
|
"authors": [
|
|
"Tauri Programme within The Commons Conservancy"
|
|
],
|
|
"repository": "https://github.com/tauri-apps/plugins-workspace",
|
|
"type": "module",
|
|
"types": "./dist-js/index.d.ts",
|
|
"main": "./dist-js/index.cjs",
|
|
"module": "./dist-js/index.js",
|
|
"exports": {
|
|
"types": "./dist-js/index.d.ts",
|
|
"import": "./dist-js/index.js",
|
|
"require": "./dist-js/index.cjs"
|
|
},
|
|
"scripts": {
|
|
"build": "rollup -c"
|
|
},
|
|
"files": [
|
|
"dist-js",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"dependencies": {
|
|
"@tauri-apps/api": "^2.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "2.8.0"
|
|
}
|
|
}
|