-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.37 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "vite-plugin-electron-config",
"version": "1.0.0",
"description": "Electron plugin for Vite",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"author": "Alex Wei<https://github.com/alex8088>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/alex8088/vite-plugin-electron-config.git"
},
"bugs": {
"url": "https://github.com/alex8088/vite-plugin-electron-config/issues"
},
"homepage": "https://github.com/alex8088/vite-plugin-electron-config#readme",
"keywords": [
"electron",
"vite",
"plugin"
],
"scripts": {
"format": "prettier --write .",
"lint": "eslint --ext .ts src/**",
"typecheck": "tsc --noEmit",
"build": "npm run lint && tsup src/index.ts --dts --format cjs,esm"
},
"peerDependencies": {
"electron": ">=13.0.0",
"vite": "^2.0.0"
},
"devDependencies": {
"@types/node": "16.11.22",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.1",
"tsup": "^5.12.2",
"typescript": "^4.5.5",
"vite": "^2.9.1"
}
}