UNPKG

@stacksjs/vite-plugin-tauri

Version:

A Vite plugin to seamlessly integrate with Tauri.

68 lines (67 loc) 1.55 kB
{ "name": "@stacksjs/vite-plugin-tauri", "type": "module", "version": "0.2.2", "description": "A Vite plugin to seamlessly integrate with Tauri.", "author": "Chris Breuer <chris@stacksjs.org>", "license": "MIT", "homepage": "https://github.com/stacksjs/vite-plugin-tauri#readme", "repository": { "type": "git", "url": "git+https://github.com/stacksjs/vite-plugin-tauri.git" }, "bugs": { "url": "https://github.com/stacksjs/vite-plugin-tauri/issues" }, "keywords": [ "typescript", "tauri", "vite", "plugin", "vite-plugin-tauri", "development", "build", "system-tray", "desktop", "mobile", "app" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./*": { "import": "./dist/*" } }, "module": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist" ], "scripts": { "build": "bun --bun ./build.ts", "lint": "bunx --bun eslint .", "lint:fix": "bunx --bun eslint . --fix", "changelog": "bunx changelogen --output CHANGELOG.md", "test": "bun test", "typecheck": "bun --bun tsc --noEmit", "prepublishOnly": "bun --bun run build" }, "dependencies": { "@tauri-apps/api": "^2.4.1", "@tauri-apps/cli": "^2.4.1", "bunfig": "^0.8.2" }, "devDependencies": { "typescript": "^5.8.3", "vite": "^6.2.6" }, "simple-git-hooks": { "pre-commit": "bunx lint-staged" }, "lint-staged": { "*.{js,ts}": "bunx eslint . --fix" } }