-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.86 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
{
"name": "reconx",
"private": true,
"version": "1.2.0",
"main": "electron/main.cjs",
"scripts": {
"dev": "vite",
"electron": "wait-on tcp:5173 && cross-env NODE_ENV=development electron .",
"start": "concurrently \"npx vite\" \"npm run electron\"",
"build": "tsc -b && vite build",
"dist": "npm run build && electron-builder",
"lint": "eslint .",
"preview": "vite preview",
"dist:win": "electron-builder --win",
"dist:mac": "electron-builder --mac",
"dist:linux": "electron-builder --linux"
},
"build": {
"appId": "com.reconx.app",
"productName": "ReconX",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*",
"node_modules/**/*"
],
"win": {
"target": "nsis"
},
"mac": {
"target": "dmg"
},
"linux": {
"target": "AppImage"
}
},
"dependencies": {
"@types/react-router-dom": "^5.3.3",
"lucide-react": "^1.17.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-router-dom": "^7.17.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.12.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^28.3.3",
"electron-builder": "^26.15.2",
"eslint": "^10.3.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"puppeteer-core": "^24.43.1",
"typescript": "~6.0.2",
"typescript-eslint": "^8.59.2",
"vite": "^5.4.21",
"vite-plugin-pwa": "^1.3.0",
"wait-on": "^9.0.10"
},
"keywords": [
"cybersecurity",
"pentesting",
"bug-bounty",
"osint",
"recon",
"security-tools"
],
"license": "MIT",
"engines": {
"node": ">=20.0.0"
}
}