This repository was archived by the owner on Jan 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.29 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.29 KB
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
62
63
64
65
66
67
68
69
70
{
"name": "embervpn-client",
"version": "1.4.17",
"main": "./out/main/index.js",
"homepage": "https://embervpn.org",
"description": "Ember VPN Client",
"author": "Ember VPN",
"scripts": {
"build:linux": "electron-vite build && electron-builder --linux --config",
"build:mac": "electron-vite build && electron-builder --mac --config",
"build:win": "npm run build && electron-builder --win --config",
"build": "npm run typecheck && electron-vite build",
"dev": "electron-vite dev",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"postinstall": "electron-builder install-app-deps",
"start": "electron-vite preview",
"test": "echo \"Error: no tests exist\"",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web"
},
"devDependencies": {
"@electron-toolkit/preload": "^2.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron-toolkit/utils": "^2.0.0",
"@formkit/auto-animate": "^0.7.0",
"@types/admin-check": "^1.1.0",
"@types/auto-launch": "^5.0.2",
"@types/node": "^20.1.1",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"@types/semver": "^7.3.13",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.0",
"admin-check": "^1.1.3",
"autoprefixer": "^10.4.14",
"classnames": "^2.3.2",
"clsx": "^2.0.0",
"dayjs": "^1.11.7",
"electron": "^25.8.4",
"electron-builder": "^24.4.0",
"electron-fetch": "^1.9.1",
"electron-store": "^8.1.0",
"electron-vite": "^1.0.20",
"eslint": "^8.36.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"less": "^4.1.3",
"mkdirp": "^3.0.1",
"node-ssh": "^13.1.0",
"postcss": "^8.4.31",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-query": "^3.39.3",
"react-router-dom": "^6.9.0",
"react-toastify": "^9.1.1",
"semver": "^7.5.2",
"sudo-prompt": "^9.2.1",
"systeminformation": "^5.21.7",
"tailwind-merge": "^1.13.2",
"tailwindcss": "^3.2.7",
"terser": "^5.19.2",
"typescript": "^5.0.3",
"vite": "^4.4.12",
"vite-plugin-require-transform": "^1.0.9",
"vite-tsconfig-paths": "^4.0.8"
}
}