mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-18 08:02:13 +03:00
a478841424
Co-authored-by: Renovate Bot <bot@renovateapp.com>
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.1",
|
|
"@rollup/plugin-typescript": "8.3.2",
|
|
"rollup": "2.70.2",
|
|
"rollup-plugin-terser": "7.0.2",
|
|
"typescript": "4.6.3"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "1.0.0-rc.3",
|
|
"tslib": "^2.1.0"
|
|
}
|
|
}
|