mirror of
https://github.com/tauri-apps/tauri-plugin-app.git
synced 2026-02-04 10:51:20 +01:00
Co-authored-by: Fabian-Lars <fabianlars@fabianlars.de> Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/5038084282 Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
33 lines
673 B
JSON
33 lines
673 B
JSON
{
|
|
"name": "@tauri-apps/plugin-app",
|
|
"version": "1.0.0",
|
|
"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.5.0"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "2.0.0-alpha.4"
|
|
}
|
|
}
|