Files
hasher/package.json
2025-12-15 16:35:35 +01:00

59 líneas
1.3 KiB
JSON

{
"name": "hasher",
"version": "1.0.0",
"description": "A modern hash search and generation tool powered by Redis and Next.js",
"keywords": [
"hash",
"md5",
"sha1",
"sha256",
"sha512",
"redis",
"nextjs",
"cryptography",
"security",
"hash-lookup"
],
"author": "Your Name",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/hasher.git"
},
"bugs": {
"url": "https://github.com/yourusername/hasher/issues"
},
"homepage": "https://github.com/yourusername/hasher#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"index-file": "tsx scripts/index-file.ts",
"remove-duplicates": "tsx scripts/remove-duplicates.ts"
},
"dependencies": {
"ioredis": "^5.4.2",
"lucide-react": "^0.555.0",
"next": "15.4.8",
"react": "19.1.2",
"react-dom": "19.1.2",
"tsx": "^4.21.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.0.7",
"tailwindcss": "^4",
"typescript": "^5"
}
}