This will allow the share extension to access the Bearer token to send images to the backend.
34 lines
734 B
JSON
34 lines
734 B
JSON
{
|
|
"name": "tauri-plugin-ios-shared-token-api",
|
|
"version": "0.1.0",
|
|
"author": "You",
|
|
"description": "",
|
|
"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"
|
|
},
|
|
"files": [
|
|
"dist-js",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"prepublishOnly": "pnpm build",
|
|
"pretest": "pnpm build"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": ">=2.0.0-beta.6"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
"rollup": "^4.9.6",
|
|
"typescript": "^5.3.3",
|
|
"tslib": "^2.6.2"
|
|
}
|
|
}
|