Files
archived-tauri-plugin-http/package.json
Lucas Fernandes Nogueira a8b3e3df29 refactor: only inject API IIFE script when withGlobalTauri is true (#1071)
* refactor: only inject API IIFE script when withGlobalTauri is true

* fmt

* update tauri

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

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
2024-03-19 18:04:27 +00:00

29 lines
600 B
JSON

{
"name": "@tauri-apps/plugin-http",
"version": "2.0.0-beta.2",
"license": "MIT or APACHE-2.0",
"authors": [
"Tauri Programme within The Commons Conservancy"
],
"type": "module",
"types": "./dist-js/index.d.ts",
"main": "./dist-js/index.cjs",
"module": "./dist-js/index.js",
"exports": {
"types": "./dist-js/index.d.ts",
"import": "./dist-js/index.js",
"require": "./dist-js/index.cjs"
},
"scripts": {
"build": "rollup -c"
},
"files": [
"dist-js",
"README.md",
"LICENSE"
],
"dependencies": {
"@tauri-apps/api": "2.0.0-beta.6"
}
}