2021-09-28 02:15:17 +03:00
|
|
|
{
|
|
|
|
"name": "tauri-plugin-{{ plugin_name }}-api",
|
2021-10-03 14:22:29 +03:00
|
|
|
"version": "0.0.0",
|
2021-10-03 14:58:31 +03:00
|
|
|
"author": "{{ author }}",
|
2021-09-28 02:15:17 +03:00
|
|
|
"description": "",
|
|
|
|
"browser": "webview-dist/index.js",
|
|
|
|
"main": "webview-dist/index.js",
|
2021-09-28 16:03:38 +03:00
|
|
|
"types": "webview-dist/index.d.ts",
|
2021-09-28 02:15:17 +03:00
|
|
|
"scripts": {
|
|
|
|
"build": "rollup -c ./webview-src/rollup.config.js",
|
|
|
|
"prepublishOnly": "yarn build",
|
|
|
|
"pretest": "yarn build"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-05-04 16:25:31 +03:00
|
|
|
"@rollup/plugin-node-resolve": "13.3.0",
|
2022-04-20 18:50:34 +03:00
|
|
|
"@rollup/plugin-typescript": "8.3.2",
|
2022-05-04 16:25:31 +03:00
|
|
|
"rollup": "2.71.1",
|
2021-09-29 17:44:32 +03:00
|
|
|
"rollup-plugin-terser": "7.0.2",
|
2022-05-04 16:25:31 +03:00
|
|
|
"typescript": "4.6.4"
|
2021-09-28 02:15:17 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-04-29 19:47:52 +03:00
|
|
|
"@tauri-apps/api": "1.0.0-rc.4",
|
2021-09-28 02:15:17 +03:00
|
|
|
"tslib": "^2.1.0"
|
|
|
|
}
|
|
|
|
}
|