-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.5 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
{
"name": "kpm-linux",
"productName": "Kaspersky Password Manager",
"description": "Kaspersky Password Manager for Linux",
"version": "1.0.0",
"main": "./out/main/index.js",
"author": {
"name": "64mb",
"url": "https://github.com/64mb",
"email": "[email protected]"
},
"homepage": "https://github.com/64mb/kpm-linux",
"repository": {
"url": "https://github.com/64mb/kpm-linux"
},
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"typecheck": "tsc --noEmit -p tsconfig.node.json --composite false",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"postinstall": "electron-builder install-app-deps",
"build": "npm run typecheck && electron-vite build",
"build-linux": "npm run build && electron-builder --linux"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.0",
"@electron-toolkit/utils": "^3.0.0"
},
"devDependencies": {
"@electron-toolkit/eslint-config": "^1.0.2",
"@electron-toolkit/eslint-config-ts": "^1.0.1",
"@electron-toolkit/tsconfig": "^1.0.1",
"@typescript-eslint/eslint-plugin": "7.4.0",
"@rushstack/eslint-patch": "^1.7.1",
"@types/node": "^18.19.9",
"electron": "^28.2.0",
"electron-builder": "^24.9.1",
"electron-vite": "^2.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"prettier": "^3.2.4",
"typescript": "^5.3.3",
"vite": "^5.0.12"
}
}