mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-07-16 16:47:21 +02:00
fe79adb5c7
* feat: scaffold NFC plugin, initial iOS code * adjust script paths (api example) * update entitlements & plist * update class name * update api * sketch api, remove desktop * update response data * add write fn * remove commands * fixes for write mode * check nfc state before using the APIs * fix(example): downgrade internal-ip to v7 * feat: typed iOS arguments * update swift requirement * android updates * update tauri * fix icon * update example * fix build * fix notification example * fix clipboard * fix ios notification build * fix info.plist * update tauri * add change file * fmt * update to new args class syntax :( [skip ci] * add lang code handling in RTD_TEXT helper (written payload is broken without it) * update nfc to latest tauri. use tauri from git * update lockfile * android: add initial nfc writer implementation * check sdk version for pendingintent flag * quicksaving basic ndef reading that doesn't crash * add basic ndef reading (android) * small cleanup * change pending action type * validate available state * gradle 8.0.0 * use session class * implement keep session alive * fix notification crash?? * remove dox feature, fix breaking changes * update dependencies * fix shell tests [skip ci] * fmt [skip ci] * type safe args * scan kind options * commit .idea files * update api * update example * fix app check * alertmessage options for iOS * default to tag on example * fix(ios): always close session on write, remove keepsessionalive option * add kind input to write options * empty records if message not found * fill tag metadata for ndef read * add contributors * update vite * covector setup * tauri/dox removed * docs and examples * fmt [skip ci] --------- Co-authored-by: FabianLars-crabnebula <fabianlars@crabnebula.dev> Co-authored-by: Lucas Nogueira <lucas@tauri.app> Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
342 lines
7.4 KiB
JSON
342 lines
7.4 KiB
JSON
{
|
|
"gitSiteUrl": "https://github.com/tauri-apps/plugins-workspace/",
|
|
"pkgManagers": {
|
|
"javascript": {
|
|
"version": true,
|
|
"getPublishedVersion": "node ../../.scripts/covector/package-latest-version.cjs npm ${ pkgFile.pkg.name } ${ pkgFile.pkg.version }",
|
|
"publish": ["pnpm build", "pnpm publish --access public --no-git-checks"]
|
|
},
|
|
"rust": {
|
|
"version": true,
|
|
"getPublishedVersion": "node ../../.scripts/covector/package-latest-version.cjs cargo ${ pkgFile.pkg.package.name } ${ pkgFile.pkg.package.version }",
|
|
"publish": [
|
|
{
|
|
"command": "cargo package --no-verify",
|
|
"dryRunCommand": true
|
|
},
|
|
{
|
|
"command": "echo '<details>\n<summary><em><h4>Cargo Publish</h4></em></summary>\n\n```'",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "cargo publish",
|
|
"dryRunCommand": "cargo publish --dry-run",
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "echo '```\n\n</details>\n'",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"packages": {
|
|
"api-example": {
|
|
"path": "./examples/api/src-tauri",
|
|
"manager": "rust",
|
|
"publish": false,
|
|
"dependencies": [
|
|
"barcode-scanner",
|
|
"log-plugin",
|
|
"cli",
|
|
"clipboard-manager",
|
|
"dialog",
|
|
"fs",
|
|
"global-shortcut",
|
|
"http",
|
|
"notification",
|
|
"os",
|
|
"process",
|
|
"shell",
|
|
"updater"
|
|
]
|
|
},
|
|
"api-example-js": {
|
|
"path": "./examples/api",
|
|
"manager": "javascript",
|
|
"publish": false,
|
|
"dependencies": [
|
|
"barcode-scanner-js",
|
|
"log-js",
|
|
"cli-js",
|
|
"clipboard-manager-js",
|
|
"dialog-js",
|
|
"fs-js",
|
|
"global-shortcut-js",
|
|
"http-js",
|
|
"notification-js",
|
|
"os-js",
|
|
"process-js",
|
|
"shell-js",
|
|
"updater-js"
|
|
],
|
|
"postversion": "pnpm install --no-frozen-lockfile"
|
|
},
|
|
|
|
"deep-link-example-js": {
|
|
"path": "./plugins/deep-link/examples/app",
|
|
"manager": "javascript",
|
|
"publish": false,
|
|
"dependencies": ["deep-link-js"],
|
|
"postversion": "pnpm install --no-frozen-lockfile"
|
|
},
|
|
|
|
"authenticator": {
|
|
"path": "./plugins/authenticator",
|
|
"manager": "rust"
|
|
},
|
|
"authenticator-js": {
|
|
"path": "./plugins/authenticator",
|
|
"manager": "javascript"
|
|
},
|
|
|
|
"autostart": {
|
|
"path": "./plugins/autostart",
|
|
"manager": "rust"
|
|
},
|
|
"autostart-js": {
|
|
"path": "./plugins/autostart",
|
|
"manager": "javascript"
|
|
},
|
|
|
|
"barcode-scanner": {
|
|
"path": "./plugins/barcode-scanner",
|
|
"manager": "rust"
|
|
},
|
|
"barcode-scanner-js": {
|
|
"path": "./plugins/barcode-scanner",
|
|
"manager": "javascript"
|
|
},
|
|
|
|
"cli": {
|
|
"path": "./plugins/cli",
|
|
"manager": "rust"
|
|
},
|
|
"cli-js": {
|
|
"path": "./plugins/cli",
|
|
"manager": "javascript"
|
|
},
|
|
|
|
"clipboard-manager": {
|
|
"path": "./plugins/clipboard-manager",
|
|
"manager": "rust"
|
|
},
|
|
"clipboard-manager-js": {
|
|
"path": "./plugins/clipboard-manager",
|
|
"manager": "javascript"
|
|
},
|
|
|
|
"deep-link": {
|
|
"path": "./plugins/deep-link",
|
|
"manager": "rust"
|
|
},
|
|
"deep-link-js": {
|
|
"path": "./plugins/deep-link",
|
|
"manager": "javascript"
|
|
},
|
|
|
|
"fs": {
|
|
"path": "./plugins/fs",
|
|
"manager": "rust"
|
|
},
|
|
"fs-js": {
|
|
"path": "./plugins/fs",
|
|
"manager": "javascript"
|
|
},
|
|
|
|
"dialog": {
|
|
"path": "./plugins/dialog",
|
|
"manager": "rust",
|
|
"dependencies": ["fs"]
|
|
},
|
|
"dialog-js": {
|
|
"path": "./plugins/dialog",
|
|
"manager": "javascript"
|
|
},
|
|
|
|
"global-shortcut": {
|
|
"path": "./plugins/global-shortcut",
|
|
"manager": "rust"
|
|
},
|
|
"global-shortcut-js": {
|
|
"path": "./plugins/global-shortcut",
|
|
"manager": "javascript"
|
|
},
|
|
|
|
"http": {
|
|
"path": "./plugins/http",
|
|
"manager": "rust",
|
|
"dependencies": ["fs"]
|
|
},
|
|
"http-js": {
|
|
"path": "./plugins/http",
|
|
"manager": "javascript"
|
|
},
|
|
|
|
"localhost": {
|
|
"path": "./plugins/localhost",
|
|
"manager": "rust"
|
|
},
|
|
|
|
"log-plugin": {
|
|
"path": "./plugins/log",
|
|
"manager": "rust"
|
|
},
|
|
"log-js": {
|
|
"path": "./plugins/log",
|
|
"manager": "javascript"
|
|
},
|
|
|
|
"nfc": {
|
|
"path": "./plugins/nfc",
|
|
"manager": "rust"
|
|
},
|
|
"nfc-js": {
|
|
"path": "./plugins/nfc",
|
|
"manager": "javascript"
|
|
},
|
|
|
|
"notification": {
|
|
"path": "./plugins/notification",
|
|
"manager": "rust"
|
|
},
|
|
"notification-js": {
|
|
"path": "./plugins/notification",
|
|
"manager": "javascript"
|
|
},
|
|
|
|
"os": {
|
|
"path": "./plugins/os",
|
|
"manager": "rust"
|
|
},
|
|
"os-js": {
|
|
"path": "./plugins/os",
|
|
"manager": "javascript"
|
|
},
|
|
|
|
"persisted-scope": {
|
|
"path": "./plugins/persisted-scope",
|
|
"manager": "rust",
|
|
"dependencies": ["fs"]
|
|
},
|
|
|
|
"positioner": {
|
|
"path": "./plugins/positioner",
|
|
"manager": "rust"
|
|
},
|
|
"positioner-js": {
|
|
"path": "./plugins/positioner",
|
|
"manager": "javascript"
|
|
},
|
|
|
|
"process": {
|
|
"path": "./plugins/process",
|
|
"manager": "rust"
|
|
},
|
|
"process-js": {
|
|
"path": "./plugins/process",
|
|
"manager": "javascript"
|
|
},
|
|
|
|
"shell": {
|
|
"path": "./plugins/shell",
|
|
"manager": "rust"
|
|
},
|
|
"shell-js": {
|
|
"path": "./plugins/shell",
|
|
"manager": "javascript"
|
|
},
|
|
|
|
"single-instance": {
|
|
"path": "./plugins/single-instance",
|
|
"manager": "rust"
|
|
},
|
|
|
|
"sql": {
|
|
"path": "./plugins/sql",
|
|
"manager": "rust",
|
|
"publish": [
|
|
{
|
|
"command": "cargo package --no-verify",
|
|
"dryRunCommand": true
|
|
},
|
|
{
|
|
"command": "echo '<details>\n<summary><em><h4>Cargo Publish</h4></em></summary>\n\n```'",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "cargo publish --features sqlite",
|
|
"dryRunCommand": "cargo publish --features sqlite --dry-run",
|
|
"pipe": true
|
|
},
|
|
{
|
|
"command": "echo '```\n\n</details>\n'",
|
|
"dryRunCommand": true,
|
|
"pipe": true
|
|
}
|
|
]
|
|
},
|
|
"sql-js": {
|
|
"path": "./plugins/sql",
|
|
"manager": "javascript"
|
|
},
|
|
|
|
"store": {
|
|
"path": "./plugins/store",
|
|
"manager": "rust"
|
|
},
|
|
"store-js": {
|
|
"path": "./plugins/store",
|
|
"manager": "javascript"
|
|
},
|
|
|
|
"stronghold": {
|
|
"path": "./plugins/stronghold",
|
|
"manager": "rust"
|
|
},
|
|
"stronghold-js": {
|
|
"path": "./plugins/stronghold",
|
|
"manager": "javascript"
|
|
},
|
|
|
|
"updater": {
|
|
"path": "./plugins/updater",
|
|
"manager": "rust"
|
|
},
|
|
"updater-js": {
|
|
"path": "./plugins/updater",
|
|
"manager": "javascript"
|
|
},
|
|
|
|
"upload": {
|
|
"path": "./plugins/upload",
|
|
"manager": "rust"
|
|
},
|
|
"upload-js": {
|
|
"path": "./plugins/upload",
|
|
"manager": "javascript"
|
|
},
|
|
|
|
"websocket": {
|
|
"path": "./plugins/websocket",
|
|
"manager": "rust"
|
|
},
|
|
"websocket-js": {
|
|
"path": "./plugins/websocket",
|
|
"manager": "javascript"
|
|
},
|
|
|
|
"window-state": {
|
|
"path": "./plugins/window-state",
|
|
"manager": "rust"
|
|
},
|
|
"window-state-js": {
|
|
"path": "./plugins/window-state",
|
|
"manager": "javascript"
|
|
}
|
|
}
|
|
}
|