mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-23 11:36:13 +02:00
8df28a9875
* chore: update deps, make mobile script paths relative * feat(biometric): setup plugin folder * feat: implement iOS * add api * android * fix plugin name * also check empty info.plist entry * add example * fix android * supress * lint * better explanation * add partners & contributed by * change ext * license headers * update vite * add covector setup * tauri/dox removed * add example * docs --------- Co-authored-by: Lucas Nogueira <lucas@tauri.app>
33 lines
674 B
JSON
33 lines
674 B
JSON
{
|
|
"name": "@tauri-apps/plugin-biometric",
|
|
"version": "1.0.0",
|
|
"license": "MIT or APACHE-2.0",
|
|
"authors": [
|
|
"Tauri Programme within The Commons Conservancy"
|
|
],
|
|
"type": "module",
|
|
"types": "./dist-js/index.d.ts",
|
|
"main": "./dist-js/index.cjs",
|
|
"module": "./dist-js/index.js",
|
|
"exports": {
|
|
"types": "./dist-js/index.d.ts",
|
|
"import": "./dist-js/index.js",
|
|
"require": "./dist-js/index.cjs"
|
|
},
|
|
"scripts": {
|
|
"build": "rollup -c"
|
|
},
|
|
"files": [
|
|
"dist-js",
|
|
"!dist-js/**/*.map",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"devDependencies": {
|
|
"tslib": "2.6.0"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "2.0.0-alpha.12"
|
|
}
|
|
}
|