forked from azurejoga/osint-explorer
-
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) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.92 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": "osint-tools-brasil",
"private": true,
"version": "1.0.0",
"description": "OSINT Tools Explorer — Professional Intelligence Directory for Cybersecurity and Investigation",
"author": {
"name": "Juan Mathews Rebello Santos",
"url": "https://juanmathewsrebellosantos.com"
},
"type": "module",
"main": "electron/main.js",
"scripts": {
"generate": "node scripts/fetch-osint-md.js",
"predev": "npm run generate",
"prebuild": "npm run generate",
"dev": "vite",
"build:web": "vite build",
"build": "npm run build:web && electron-builder && npx cap sync android",
"build:electron": "npm run build:web && electron-builder",
"build:android": "npm run build:web && npx cap sync android",
"preview": "vite preview",
"electron:dev": "NODE_ENV=development electron .",
"android:sync": "npx cap sync android",
"android:open": "npx cap open android",
"ios:sync": "npx cap sync ios",
"ios:open": "npx cap open ios"
},
"build": {
"appId": "com.osint.tools",
"productName": "OSINT Tools Explorer",
"directories": {
"output": "dist-electron"
},
"files": [
"dist/**/*",
"electron/**/*",
"public/**/*"
],
"win": {
"target": ["nsis", "portable"],
"icon": "public/favicon.ico"
},
"mac": {
"target": "dmg",
"icon": "public/favicon.ico"
},
"linux": {
"target": "AppImage",
"icon": "public/favicon.ico"
}
},
"dependencies": {
"@capacitor/android": "^8.3.0",
"@capacitor/cli": "^8.3.0",
"@capacitor/core": "^8.3.0",
"lucide-react": "^0.400.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^3.0.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.19",
"electron": "^41.2.0",
"electron-builder": "^26.8.1",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4",
"vite": "^5.3.1"
}
}