electron-vite/package.json

91 lines
2.2 KiB
JSON
Raw Normal View History

2022-03-17 09:21:02 +01:00
{
"name": "electron-vite",
2023-02-06 14:01:27 +01:00
"version": "1.0.19",
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",
2022-11-07 17:36:22 +01:00
"dist",
"node.d.ts"
2022-03-17 09:21:02 +01:00
],
"engines": {
2022-11-11 14:23:16 +01:00
"node": "^14.18.0 || >=16.0.0"
2022-03-17 09:21:02 +01:00
},
"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": {
"@swc/core": "^1.0.0",
2022-12-10 14:52:07 +01:00
"vite": "^3.0.0 || ^4.0.0"
2022-03-17 09:21:02 +01:00
},
"peerDependenciesMeta": {
"@swc/core": {
"optional": true
}
},
2022-03-17 09:21:02 +01:00
"devDependencies": {
"@microsoft/api-extractor": "^7.34.4",
2022-11-01 15:58:32 +01:00
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@swc/core": "^1.3.37",
2022-11-01 15:58:32 +01:00
"@types/node": "16.18.3",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
2022-08-25 13:28:17 +02:00
"eslint-plugin-prettier": "^4.2.1",
"fs-extra": "^10.1.0",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
2023-03-05 09:16:45 +01:00
"rollup": "^3.18.0",
2022-11-01 15:58:32 +01:00
"simple-git-hooks": "^2.8.1",
"tslib": "^2.5.0",
2022-11-01 15:58:32 +01:00
"typescript": "^4.8.4",
2023-03-05 09:09:19 +01:00
"vite": "^4.1.4"
2022-03-17 09:21:02 +01:00
},
"dependencies": {
"@babel/core": "^7.21.0",
"@babel/plugin-transform-arrow-functions": "^7.20.7",
2022-11-01 15:58:32 +01:00
"cac": "^6.7.14",
"esbuild": "^0.16.17",
"magic-string": "^0.30.0",
2022-03-17 09:21:02 +01:00
"picocolors": "^1.0.0"
}
}