mirror of
https://github.com/tauri-apps/tauri-plugin-upload.git
synced 2026-01-31 00:35:19 +01:00
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/9757033754 Co-authored-by: FabianLars <FabianLars@users.noreply.github.com>
34 lines
738 B
JSON
34 lines
738 B
JSON
{
|
|
"name": "tauri-plugin-upload-api",
|
|
"version": "0.0.0",
|
|
"description": "Upload files from disk to a remote server over HTTP.",
|
|
"license": "MIT or APACHE-2.0",
|
|
"authors": [
|
|
"Tauri Programme within The Commons Conservancy"
|
|
],
|
|
"type": "module",
|
|
"browser": "dist-js/index.min.js",
|
|
"module": "dist-js/index.mjs",
|
|
"types": "dist-js/index.d.ts",
|
|
"exports": {
|
|
"import": "./dist-js/index.mjs",
|
|
"types": "./dist-js/index.d.ts",
|
|
"browser": "./dist-js/index.min.js"
|
|
},
|
|
"scripts": {
|
|
"build": "rollup -c"
|
|
},
|
|
"files": [
|
|
"dist-js",
|
|
"!dist-js/**/*.map",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"devDependencies": {
|
|
"tslib": "2.6.3"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "1.6.0"
|
|
}
|
|
}
|