{ "name": "electron-vite", "version": "1.0.9", "description": "Electron build tooling based on Vite", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "electron-vite": "bin/electron-vite.js" }, "files": [ "bin", "dist" ], "engines": { "node": ">=12.2.0" }, "author": "Alex Wei", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/alex8088/electron-vite.git" }, "bugs": { "url": "https://github.com/alex8088/electron-vite/issues" }, "homepage": "https://github.com/alex8088/electron-vite#readme", "keywords": [ "electron", "vite", "cli", "plugin" ], "scripts": { "format": "prettier --write .", "lint": "eslint --ext .ts src/**", "typecheck": "tsc --noEmit", "build": "npm run lint && node scripts/build.js" }, "simple-git-hooks": { "pre-commit": "npx lint-staged", "commit-msg": "node scripts/verifyCommit.js $1" }, "lint-staged": { "*.js": [ "prettier --write" ], "*.ts?(x)": [ "eslint", "prettier --parser=typescript --write" ] }, "peerDependencies": { "vite": "^3.0.0" }, "devDependencies": { "@microsoft/api-extractor": "^7.29.5", "@rollup/plugin-node-resolve": "^13.3.0", "@rollup/plugin-typescript": "^8.4.0", "@types/node": "16.11.22", "@typescript-eslint/eslint-plugin": "^5.35.1", "@typescript-eslint/parser": "^5.35.1", "eslint": "^8.22.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-prettier": "^4.2.1", "fs-extra": "^10.1.0", "lint-staged": "^13.0.3", "prettier": "^2.7.1", "rollup": "^2.78.1", "simple-git-hooks": "^2.8.0", "tslib": "^2.4.0", "typescript": "^4.7.4", "vite": "^3.0.9" }, "dependencies": { "@babel/core": "^7.19.1", "@babel/plugin-transform-arrow-functions": "^7.18.6", "cac": "^6.7.12", "esbuild": "^0.14.54", "picocolors": "^1.0.0" } }