-
-
Notifications
You must be signed in to change notification settings - Fork 246
/
package.json
110 lines (110 loc) · 4.14 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
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
{
"name": "chrome-power",
"description": "The first open source fingerprint browser.",
"version": "1.1.4",
"private": true,
"author": {
"email": "[email protected]",
"name": "Miles",
"url": "https://blog.ulsincere.com"
},
"main": "packages/main/dist/index.cjs",
"scripts": {
"build:native-addon": "cd ./packages/main/src/native-addon && node-gyp clean && node-gyp configure && node-gyp build",
"build": "npm run build:main && npm run build:preload && npm run build:renderer",
"build:main": "cd ./packages/main && vite build",
"build:preload": "cd ./packages/preload && vite build",
"build:renderer": "cd ./packages/renderer && vite build",
"compile": "cross-env MODE=production npm run build && electron-builder build --config .electron-builder.config.js --dir --config.asar=false",
"publish": "cross-env MODE=production npm run build && node_modules\\.bin\\electron-builder --config .electron-builder.config.js --publish never",
"test": "cross-env MODE=production npm run test:main && npm run test:preload && npm run test:renderer && npm run test:e2e",
"test:e2e": "npm run build && vitest run",
"test:main": "vitest run -r packages/main --passWithNoTests",
"test:preload": "vitest run -r packages/preload --passWithNoTests",
"test:renderer": "vitest run -r packages/renderer --passWithNoTests",
"watch": "chcp 65001 && node scripts/watch.mjs",
"lint": "eslint . --ext js,mjs,cjs,ts,mts,cts,vue",
"typecheck:main": "tsc --noEmit -p packages/main/tsconfig.json",
"typecheck:preload": "tsc --noEmit -p packages/preload/tsconfig.json",
"typecheck:renderer": "tsc --noEmit -p packages/renderer/tsconfig.json",
"typecheck": "npm run typecheck:main && npm run typecheck:preload && npm run typecheck:renderer",
"postinstall": "node_modules\\.bin\\electron-builder install-app-deps && cross-env ELECTRON_RUN_AS_NODE=1 electron scripts/update-electron-vendors.mjs",
"format": "npx prettier --write \"**/*.{js,mjs,cjs,ts,mts,cts,vue,json}\""
},
"devDependencies": {
"@iconify/react": "^4.1.1",
"@types/btoa": "^1.2.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/lodash": "^4.14.199",
"@types/node": "18.17.19",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@types/react-redux": "^7.1.30",
"@typescript-eslint/eslint-plugin": "6.7.2",
"autoprefixer": "^10.4.16",
"cross-env": "7.0.3",
"electron": "27.0.0",
"electron-builder": "^24.13.3",
"electron-devtools-installer": "^3.2.0",
"eslint": "8.50.0",
"eslint-plugin-vue": "9.17.0",
"happy-dom": "12.1.6",
"nano-staged": "0.8.0",
"playwright": "1.38.1",
"postcss-loader": "^7.3.3",
"simple-git-hooks": "2.9.0",
"tailwindcss": "^3.3.3",
"typescript": "5.1.3",
"unplugin-auto-expose": "0.0.5",
"vite": "^4.5.2",
"vite-plugin-windicss": "^1.9.1",
"vitest": "0.34.5",
"windicss": "^3.5.6"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.7",
"@types/portscanner": "^2.1.2",
"@vitejs/plugin-react": "^4.0.4",
"active-win": "^8.1.1",
"agent-base": "^7.1.0",
"antd": "^5.14.0",
"async-mutex": "^0.5.0",
"axios": "^1.5.1",
"btoa": "^1.2.1",
"cors": "^2.8.5",
"electron-updater": "6.1.4",
"express": "^4.18.2",
"extract-zip": "^2.0.1",
"geo-tz": "^8.0.2",
"geoip-lite": "^1.4.10",
"http-proxy-agent": "^7.0.0",
"https-proxy-agent": "^7.0.2",
"i18next": "^23.7.8",
"i18next-browser-languagedetector": "^7.2.0",
"install": "^0.13.0",
"ip": "^2.0.1",
"ip2location-nodejs": "^9.6.1",
"knex": "^3.0.1",
"lodash": "^4.17.21",
"node-addon-api": "^7.0.0",
"node-gyp": "^10.0.1",
"npm": "^10.1.0",
"portscanner": "^2.2.0",
"proxy-chain": "^2.4.0",
"ps-list": "^8.1.1",
"puppeteer": "^21.5.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.5.0",
"react-redux": "^8.1.3",
"react-router-dom": "^6.16.0",
"redux": "^4.2.1",
"socks": "^2.7.1",
"socks-proxy-agent": "^8.0.2",
"sqlite3": "5.1.6",
"user-agents": "^1.1.148",
"winston": "^3.11.0",
"xlsx": "^0.19.3"
}
}