This repository has been archived by the owner on Dec 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.28 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
62
63
64
{
"name": "xwarp-desktop",
"private": true,
"version": "1.2.2",
"warp_plus_version": "v1.2.2",
"warp_plus_repo": "https://github.com/bepass-org/warp-plus",
"appId": "bahman.world.xwarp-desktop",
"main": "dist-electron/main.js",
"author": {
"email": "[email protected]",
"name": "Bahman World",
"url": "https://bahmanworld.com"
},
"repository": {
"url": "https://github.com/bahmanworld/xwarp-desktop",
"directory": "./",
"type": "github"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"release:macos:arm64": "tsc && vite build && electron-builder build --macos --arm64",
"release:macos:x64": "tsc && vite build && electron-builder build --macos --x64",
"release:windows:arm64": "tsc && vite build && electron-builder build --windows --arm64",
"release:windows:x64": "tsc && vite build && electron-builder build --windows --x64",
"release:linux:arm64": "tsc && vite build && electron-builder build --linux --arm64",
"release:linux:x64": "tsc && vite build && electron-builder build --linux --x64",
"publish": "node ./.github/scripts/publish.js",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"git": "git add . && git commit -m \"some changes\" && git push"
},
"dependencies": {
"@blueprintjs/core": "^5.10.1",
"electron-store": "^9.0.0",
"lucide-react": "^0.370.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tree-kill": "^1.2.2",
"zustand": "^4.5.2"
},
"devDependencies": {
"@electron/notarize": "^2.3.0",
"@electron/osx-sign": "^1.2.0",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitejs/plugin-react": "^4.2.1",
"adm-zip": "^0.5.12",
"electron": "^30.0.2",
"electron-builder": "^24.13.3",
"electron-builder-notarize": "^1.5.2",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"minimist": "^1.2.8",
"nodejs-file-downloader": "^4.12.1",
"typescript": "^5.2.2",
"vite": "^5.1.6",
"vite-plugin-electron": "^0.28.4",
"vite-plugin-electron-renderer": "^0.14.5"
}
}