Files
archived-tauri-plugin-http/package.json
Amr Bashir e1432fb81c fix: add back main, module and types field in top-level package.json (#742)
closes #738

`"moduleResolution": "node"` doesn't handle the `exports` field

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

Co-authored-by: amrbashir <amrbashir@users.noreply.github.com>
2023-11-20 14:01:58 +00:00

29 lines
603 B
JSON

{
"name": "@tauri-apps/plugin-http",
"version": "2.0.0-alpha.3",
"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-alpha.11"
}
}