mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-05 10:13:00 +02:00
27 lines
694 B
JSON
Executable File
27 lines
694 B
JSON
Executable File
{
|
|
"gitSiteUrl": "https://www.github.com/your-org/tauri-plugin-{{ plugin_name }}/",
|
|
"pkgManagers": {
|
|
"rust": {
|
|
"version": true,
|
|
"publish": true,
|
|
"getPublishedVersion": "cargo search ${ pkg.pkg } --limit 1 | sed -nE 's/^[^\"]*\"//; s/\".*//1p' -"
|
|
},
|
|
"javascript": {
|
|
"version": true,
|
|
"publish": true,
|
|
"getPublishedVersion": "npm view ${ pkgFile.pkg.name } version"
|
|
}
|
|
},
|
|
"packages": {
|
|
"tauri-plugin-{{ plugin_name }}": {
|
|
"path": ".",
|
|
"manager": "rust"
|
|
},
|
|
"tauri-plugin-{{ plugin_name }}-api": {
|
|
"path": ".",
|
|
"manager": "javascript",
|
|
"dependencies": ["tauri-plugin-{{ plugin_name }}"]
|
|
}
|
|
}
|
|
}
|