@choochmeque/tauri-plugin-sharekit-api 0.1.0 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -4
- package/package.json +10 -11
package/README.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
[](https://www.npmjs.com/package/@choochmeque/tauri-plugin-sharekit-api)
|
|
2
|
+
[](https://crates.io/crates/tauri-plugin-sharekit)
|
|
3
|
+
[](https://github.com/Choochmeque/tauri-plugin-sharekit/blob/main/LICENSE)
|
|
4
|
+
|
|
5
|
+
# Tauri Plugin ShareKit
|
|
6
|
+
|
|
1
7
|
Share content to other apps via native Android and iOS sharing interfaces.
|
|
2
8
|
|
|
3
9
|
## Install
|
|
@@ -16,8 +22,8 @@ Install the Core plugin by adding the following to your `Cargo.toml` file:
|
|
|
16
22
|
|
|
17
23
|
```toml
|
|
18
24
|
[dependencies]
|
|
19
|
-
tauri-plugin-sharekit = "0.1
|
|
20
|
-
|
|
25
|
+
tauri-plugin-sharekit = "0.1"
|
|
26
|
+
# alternatively with Git:
|
|
21
27
|
tauri-plugin-sharekit = { git = "https://github.com/Choochmeque/tauri-plugin-sharekit" }
|
|
22
28
|
```
|
|
23
29
|
|
|
@@ -51,7 +57,7 @@ First you need to register the core plugin with Tauri:
|
|
|
51
57
|
```rust
|
|
52
58
|
fn main() {
|
|
53
59
|
tauri::Builder::default()
|
|
54
|
-
.plugin(
|
|
60
|
+
.plugin(tauri_plugin_sharekit::init())
|
|
55
61
|
.run(tauri::generate_context!())
|
|
56
62
|
.expect("error while running tauri application");
|
|
57
63
|
}
|
|
@@ -78,4 +84,4 @@ PRs accepted. Please make sure to read the Contributing Guide before making a pu
|
|
|
78
84
|
|
|
79
85
|
## License
|
|
80
86
|
|
|
81
|
-
MIT
|
|
87
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@choochmeque/tauri-plugin-sharekit-api",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"license": "MIT
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"license": "MIT",
|
|
5
5
|
"authors": "you",
|
|
6
6
|
"description": "A Tauri v2 plugin that enables sharing content with the Android and iOS native sharing interfaces.",
|
|
7
7
|
"type": "module",
|
|
@@ -35,20 +35,19 @@
|
|
|
35
35
|
"@tauri-apps/api": "^2.6.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@eslint/js": "9.
|
|
39
|
-
"@rollup/plugin-node-resolve": "
|
|
38
|
+
"@eslint/js": "9.35.0",
|
|
39
|
+
"@rollup/plugin-node-resolve": "16.0.1",
|
|
40
40
|
"@rollup/plugin-terser": "0.4.4",
|
|
41
|
-
"@rollup/plugin-typescript": "
|
|
42
|
-
"@types/eslint__js": "8.42.3",
|
|
41
|
+
"@rollup/plugin-typescript": "12.1.4",
|
|
43
42
|
"covector": "^0.12.0",
|
|
44
|
-
"eslint": "9.
|
|
45
|
-
"eslint-config-prettier": "
|
|
43
|
+
"eslint": "9.35.0",
|
|
44
|
+
"eslint-config-prettier": "10.1.8",
|
|
46
45
|
"eslint-plugin-security": "3.0.1",
|
|
47
46
|
"prettier": "3.6.2",
|
|
48
|
-
"rollup": "4.
|
|
49
|
-
"tslib": "2.
|
|
47
|
+
"rollup": "4.50.1",
|
|
48
|
+
"tslib": "2.8.1",
|
|
50
49
|
"typescript": "5.9.2",
|
|
51
|
-
"typescript-eslint": "8.
|
|
50
|
+
"typescript-eslint": "8.43.0"
|
|
52
51
|
},
|
|
53
52
|
"scripts": {
|
|
54
53
|
"build": "rollup -c",
|