[READ-ONLY] Mirror of https://github.com/probablykasper/vite-plugin-electron-x. A Vite plugin for bundling main.ts, preload.ts and running Electron in development
0

Configure Feed

Select the types of activity you want to include in your feed.

vite-plugin-electron-x / package.json
1.6 kB 64 lines
1{ 2 "name": "vite-plugin-electron-x", 3 "description": "A Vite plugin for bundling `main.ts`, `preload.ts` and running Electron in development.", 4 "version": "1.2.2", 5 "type": "module", 6 "scripts": { 7 "dev": "tsup src/index.ts --clean --dts --format esm,cjs --watch", 8 "build": "tsup src/index.ts --clean --dts --format esm,cjs", 9 "prepublishOnly": "npm run build", 10 "lint": "prettier --check --plugin-search-dir=. src && eslint src", 11 "format": "prettier --write --plugin-search-dir=. src && eslint --fix src" 12 }, 13 "files": [ 14 "dist", 15 "src" 16 ], 17 "main": "./dist/index.cjs", 18 "module": "./dist/index.js", 19 "types": "./dist/index.d.ts", 20 "exports": { 21 ".": { 22 "types": "./dist/index.d.ts", 23 "import": "./dist/index.js", 24 "require": "./dist/index.cjs" 25 } 26 }, 27 "dependencies": { 28 "esbuild": "^0.14.47" 29 }, 30 "devDependencies": { 31 "@typescript-eslint/eslint-plugin": "^5.53.0", 32 "@typescript-eslint/parser": "^5.53.0", 33 "electron": "^23.1.0", 34 "eslint": "^8.34.0", 35 "eslint-config-prettier": "^8.6.0", 36 "prettier": "^2.8.4", 37 "tsup": "^6.6.3", 38 "typescript": "^4.9.5", 39 "unbuild": "^1.1.2", 40 "vite": "^4.1.3" 41 }, 42 "peerDependencies": { 43 "electron": "*", 44 "vite": ">=3.0.0 <5.0.0" 45 }, 46 "license": "MIT", 47 "homepage": "https://github.com/probablykasper/vite-plugin-electron-x", 48 "repository": { 49 "type": "git", 50 "url": "git+https://github.com/probablykasper/vite-plugin-electron-x.git" 51 }, 52 "bugs": { 53 "url": "https://github.com/probablykasper/vite-plugin-electron-x/issues" 54 }, 55 "prettier": { 56 "useTabs": true, 57 "printWidth": 100, 58 "semi": false, 59 "singleQuote": true, 60 "pluginSearchDirs": [ 61 "." 62 ] 63 } 64}