tauri/tooling/cli.rs/templates/plugin/with-api/package.json

26 lines
662 B
JSON
Raw Normal View History

{
"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.0.5",
"@rollup/plugin-typescript": "8.2.5",
"rollup": "2.58.0",
"rollup-plugin-terser": "7.0.2",
"typescript": "4.4.3"
},
"dependencies": {
"@tauri-apps/api": "1.0.0-beta.8",
"tslib": "^2.1.0"
}
}