-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.05 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.05 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
{
"name": "sectoolbox",
"private": true,
"version": "1.0.0",
"description": "Professional-grade cybersecurity analysis toolkit for CTF competitions and security research",
"license": "MIT",
"author": {
"name": "Sectoolbox Team",
"url": "https://github.com/sectoolbox"
},
"repository": {
"type": "git",
"url": "https://github.com/sectoolbox/sectoolbox.git"
},
"bugs": {
"url": "https://github.com/sectoolbox/sectoolbox/issues"
},
"homepage": "https://github.com/sectoolbox/sectoolbox#readme",
"keywords": [
"ctf",
"cybersecurity",
"security-tools",
"forensics",
"penetration-testing",
"web-exploitation",
"cryptography",
"steganography",
"pcap-analysis",
"image-forensics"
],
"type": "module",
"scripts": {
"dev": "vite --config .config/vite.config.ts",
"build": "vite build --config .config/vite.config.ts",
"lint": "npm run lint:js && npm run lint:css",
"preview": "vite preview --config .config/vite.config.ts",
"lint:css": "stylelint \"src/**/*.css\" --fix --quiet",
"lint:js": "eslint . --config .config/eslint.config.js --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --quiet"
},
"dependencies": {
"@hookform/resolvers": "^5.2.1",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@ts-evtx/core": "^1.1.0",
"@types/node": "^24.3.0",
"@undecaf/zbar-wasm": "^0.11.0",
"@zxing/library": "^0.21.3",
"axios": "^1.12.2",
"binary-parser": "^2.2.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"exifreader": "^4.31.1",
"file-saver": "^2.0.5",
"file-type": "^21.0.0",
"framer-motion": "^12.23.12",
"hexy": "^0.3.5",
"jszip": "^3.10.1",
"kaitai-struct": "^0.11.0",
"lucide-react": "^0.539.0",
"pyodide": "^0.28.3",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-hook-form": "^7.62.0",
"react-hot-toast": "^2.5.2",
"react-resizable-panels": "^3.0.6",
"react-router-dom": "^7.8.2",
"react-window": "^1.8.11",
"recharts": "^2.15.4",
"socket.io-client": "^4.8.1",
"zod": "^4.0.17"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@types/react-window": "^1.8.8",
"@vitejs/plugin-react": "^5.0.0",
"autoprefixer": "^10.4.16",
"eslint": "^9.33.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"glob": "^11.0.3",
"globals": "^16.3.0",
"picomatch": "^4.0.3",
"postcss": "^8.4.31",
"stylelint": "^16.23.1",
"stylelint-config-standard": "^39.0.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^3.3.5",
"tailwindcss-animate": "^1.0.7",
"typescript": "~5.8.3",
"typescript-eslint": "^8.39.1",
"vite": "^7.1.2"
}
}