tauri/tooling/cli/templates/plugin/with-api/package.json
renovate[bot] c479e979d9
chore(deps) Update Tauri CLI (#3893)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
2022-04-19 20:02:48 -03:00

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"
}
}