fix: make package.json licenses SPDX compliant (#1861)

* fix: make plugin template package.json license SPDX compliant

* fix: make plugin package.json license SPDX compliant

* fix: make root package.json license SPDX compliant

Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/11142965697

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
This commit is contained in:
pajlada
2024-10-02 11:56:10 +00:00
committed by tauri-bot
parent 78cf9877c4
commit 2aa78c0c62
2 changed files with 10 additions and 2 deletions

View File

@@ -2,6 +2,14 @@
This plugin provides APIs to access the current process. To spawn child processes, see the [`shell`](https://github.com/tauri-apps/tauri-plugin-shell) plugin.
| Platform | Supported |
| -------- | --------- |
| Linux | ✓ |
| Windows | ✓ |
| macOS | ✓ |
| Android | x |
| iOS | x |
## Install
_This plugin requires a Rust version of at least **1.75**_

View File

@@ -1,7 +1,7 @@
{
"name": "@tauri-apps/plugin-process",
"version": "2.0.0-rc.1",
"license": "MIT or APACHE-2.0",
"license": "MIT OR Apache-2.0",
"authors": [
"Tauri Programme within The Commons Conservancy"
],
@@ -24,6 +24,6 @@
"LICENSE"
],
"dependencies": {
"@tauri-apps/api": "^2.0.0-rc.4"
"@tauri-apps/api": "^2.0.0-rc.6"
}
}