- Created .gitignore to exclude build artifacts and dependencies. - Added package.json and package-lock.json for project dependencies and scripts. - Included pnpm workspace configuration for managing packages. - Implemented TypeScript configuration in tsconfig.json. - Added README.md with project description and usage instructions. - Introduced native code for DES encryption and decryption in C/C++. - Created initial decoded data structure for handling scan results. - Established basic file structure for decoded outputs and native builds.
27 lines
731 B
JSON
27 lines
731 B
JSON
{
|
|
"name": "des-key-cracker",
|
|
"version": "1.0.0",
|
|
"description": "DES Key Cracker — recover 8-byte DES keys for TechMed / Pectus .med scans with Metal, CUDA, and LAN workers",
|
|
"main": "dist/index.js",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "tsc && node -e \"require('fs').copyFileSync('src/ui/app.css','dist/ui/app.css')\"",
|
|
"build:native": "node scripts/build-native.js",
|
|
"start": "qode dist/index.js",
|
|
"prestart": "npm run build"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"dependencies": {
|
|
"@nodegui/nodegui": "^0.74.2",
|
|
"lucide-static": "^1.47.0",
|
|
"ws": "^8.18.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.5.2",
|
|
"@types/ws": "^8.18.1",
|
|
"typescript": "^5.9.2"
|
|
}
|
|
}
|