mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-17 23:51:43 +03:00
c479e979d9
Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
26 lines
660 B
JSON
26 lines
660 B
JSON
{
|
|
"name": "tauri-plugin-{{ plugin_name }}-api",
|
|
"version": "0.0.0",
|
|
"author": "{{ author }}",
|
|
"description": "",
|
|
"browser": "webview-dist/index.js",
|
|
"main": "webview-dist/index.js",
|
|
"types": "webview-dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "rollup -c ./webview-src/rollup.config.js",
|
|
"prepublishOnly": "yarn build",
|
|
"pretest": "yarn build"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-node-resolve": "13.2.0",
|
|
"@rollup/plugin-typescript": "8.3.1",
|
|
"rollup": "2.70.1",
|
|
"rollup-plugin-terser": "7.0.2",
|
|
"typescript": "4.6.3"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "1.0.0-rc.3",
|
|
"tslib": "^2.1.0"
|
|
}
|
|
}
|