tauri-plugin-desktop-underlay 0.2.0

Tauri plugin for attaching a window to desktop, below icons and above wallpaper.
Documentation
{
  "name": "tauri-plugin-desktop-underlay-api",
  "version": "0.2.0",
  "license": "MIT",
  "author": "Yao Xiao <yx2436@nyu.edu>",
  "homepage": "https://github.com/Charlie-XIAO/tauri-plugin-desktop-underlay",
  "repository": "github:Charlie-XIAO/tauri-plugin-desktop-underlay",
  "description": "Tauri plugin for attaching a window to desktop, below icons and above wallpaper.",
  "keywords": [
    "tauri",
    "plugin",
    "desktop",
    "underlay",
    "wallpaper"
  ],
  "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"
  ],
  "scripts": {
    "preinstall": "npx only-allow pnpm",
    "prepare": "husky",
    "prepublishOnly": "pnpm build",
    "pretest": "pnpm build",
    "build": "rollup -c",
    "format": "prettier --write . && cargo +nightly fmt",
    "format:check": "prettier --check . && cargo +nightly fmt -- --check",
    "lint": "cargo clippy --fix --allow-dirty --allow-staged -- -D warnings",
    "lint:check": "cargo clippy -- -D warnings"
  },
  "dependencies": {
    "@tauri-apps/api": "^2.5.0"
  },
  "devDependencies": {
    "@rollup/plugin-typescript": "^12.1.2",
    "husky": "^9.1.7",
    "lint-staged": "^16.0.0",
    "prettier": "^3.5.3",
    "rollup": "^4.40.2",
    "tslib": "^2.8.1",
    "typescript": "^5.8.3"
  },
  "prettier": {},
  "lint-staged": {
    "*.{js,jsx,ts,tsx,json,md,mdx,html,css,scss,yml,yaml}": "prettier --write",
    "*.rs": "rustfmt +nightly --"
  }
}