mirror of
https://gitlab.com/cristofa/tauri-plugin-keep-screen-on.git
synced 2025-12-23 09:19:49 +00:00
33 lines
839 B
JSON
33 lines
839 B
JSON
{
|
|
"name": "tauri-plugin-keep-screen-on-api",
|
|
"version": "0.1.4",
|
|
"author": "Krzysztof Andrelczyk",
|
|
"description": "Tauri plugin that provides commands to disable automatic screen dimming in Adroid and iOS.",
|
|
"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": "yarn build",
|
|
"pretest": "yarn 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"
|
|
}
|
|
}
|