tauri/tooling/cli/templates/plugin/with-api/package.json
github-actions[bot] 0876bbbb57
Apply Version Updates From Current Changes (#2522)
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
2022-02-10 18:03:25 -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.1.3",
"@rollup/plugin-typescript": "8.3.0",
"rollup": "2.67.1",
"rollup-plugin-terser": "7.0.2",
"typescript": "4.5.5"
},
"dependencies": {
"@tauri-apps/api": "1.0.0-rc.0",
"tslib": "^2.1.0"
}
}