electron-vite/package.json

80 lines
1.9 KiB
JSON
Raw Normal View History

2022-03-17 09:21:02 +01:00
{
"name": "electron-vite",
2022-09-11 11:00:07 +02:00
"version": "1.0.8",
2022-08-25 13:28:17 +02:00
"description": "Electron build tooling based on Vite",
2022-03-17 09:21:02 +01:00
"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<https://github.com/alex8088>",
"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": {
2022-08-25 13:28:17 +02:00
"vite": "^3.0.0"
2022-03-17 09:21:02 +01:00
},
"devDependencies": {
2022-08-25 13:28:17 +02:00
"@microsoft/api-extractor": "^7.29.5",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.4.0",
2022-03-17 09:21:02 +01:00
"@types/node": "16.11.22",
2022-08-25 13:28:17 +02:00
"@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"
2022-03-17 09:21:02 +01:00
},
"dependencies": {
"cac": "^6.7.12",
2022-08-25 13:28:17 +02:00
"esbuild": "^0.14.54",
2022-03-17 09:21:02 +01:00
"picocolors": "^1.0.0"
}
}