-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.27 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
55
56
57
58
59
60
61
{
"name": "einf",
"version": "0.0.0",
"packageManager": "[email protected]",
"description": "A simple electron main process framework",
"author": "ArcherGu",
"license": "MIT",
"repository": {
"url": "https://github.com/ArcherGu/einf.git"
},
"keywords": [
"electron",
"framework",
"decorator",
"metadata"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "tsup",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "tsup && vitest run",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"electron": ">=16.0.0"
},
"dependencies": {
"colorette": "^2.0.20",
"reflect-metadata": "^0.2.0"
},
"devDependencies": {
"@lightwing/eslint-config": "1.0.99",
"@types/node": "22.10.6",
"electron": "34.0.0",
"eslint": "9.18.0",
"execa": "9.5.2",
"lint-staged": "15.3.0",
"simple-git-hooks": "2.11.1",
"tsup": "8.3.5",
"typescript": "5.7.3",
"vite": "6.0.7",
"vite-plugin-doubleshot": "0.0.17",
"vitest": "2.1.8"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md,json,yml}": [
"eslint --fix"
]
}
}