-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 4.6 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 4.6 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "flowz",
"version": "4.1.0",
"description": "FlowZ - 简洁现代的跨平台代理客户端",
"main": "dist/main/main/index.js",
"scripts": {
"prepare": "husky",
"dev": "node scripts/dev.js",
"dev:main": "node scripts/gen-build-info.js && cross-env NODE_ENV=development tsc -p tsconfig.main.json && electron .",
"dev:renderer": "vite",
"build": "npm run build:main && npm run build:renderer",
"build:main": "node scripts/gen-build-info.js && tsc -p tsconfig.main.json",
"build:renderer": "vite build",
"build:helper": "bash scripts/build-helper.sh",
"package": "npm run fetch:dashboard && npm run build && electron-builder",
"package:win": "npm run build:helper && npm run fetch:dashboard && npm run build && electron-builder --win",
"package:mac": "npm run build:helper && npm run fetch:dashboard && npm run build && electron-builder --mac --arm64 --x64",
"package:linux": "npm run fetch:dashboard && npm run build && electron-builder --linux --x64",
"package:all": "npm run build:helper && npm run fetch:dashboard && npm run build && electron-builder --win --mac --linux",
"dist": "npm run fetch:dashboard && npm run build && electron-builder --publish never",
"dist:win": "npm run build:helper && npm run fetch:dashboard && npm run build && electron-builder --win --publish never",
"dist:mac": "npm run build:helper && npm run fetch:dashboard && npm run build && electron-builder --mac --arm64 --x64 --publish never",
"dist:linux": "npm run fetch:dashboard && npm run build && electron-builder --linux --x64 --publish never",
"pretest": "node scripts/gen-build-info.js",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,json,css}\"",
"fetch:cronet": "node scripts/fetch-cronet.mjs",
"fetch:dashboard": "node scripts/fetch-dashboard.mjs",
"release:tag": "node scripts/push-release.js",
"release:tag:update": "node scripts/push-release.js -y -u",
"release:prepare": "npm run fetch:cronet && npm run fetch:dashboard && npm run build && npm run package:all"
},
"keywords": [
"electron",
"proxy",
"sing-box",
"vless",
"trojan",
"flowz"
],
"author": "dododook <admin@flowz.app>",
"license": "MIT",
"devDependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@eslint/js": "^9.39.3",
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.0.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"@vitejs/plugin-react": "^5.1.2",
"autoprefixer": "^10.4.22",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cross-env": "^10.1.0",
"electron": "^42.4.0",
"electron-builder": "^26.15.2",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^14.0.0",
"husky": "^9.1.7",
"i18next": "^25.8.13",
"jest": "^30.2.0",
"lint-staged": "^16.2.7",
"lucide-react": "^0.454.0",
"png-to-ico": "^3.0.1",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-hook-form": "^7.65.0",
"react-i18next": "^16.5.4",
"sonner": "^2.0.7",
"tailwind-merge": "^2.5.4",
"tailwindcss": "^3.4.15",
"tailwindcss-animate": "^1.0.7",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"vite": "^7.2.7",
"wait-on": "^9.0.3",
"zod": "^4.1.12"
},
"dependencies": {
"@grpc/grpc-js": "^1.14.4",
"@grpc/proto-loader": "^0.8.1",
"i18next": "^25.8.13",
"js-yaml": "^4.1.0",
"plist": "^3.1.0",
"zustand": "^4.5.5"
},
"lint-staged": {
"src/**/*.{ts,tsx,json,css}": [
"prettier --write"
]
}
}