package.json (view raw)
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 |
{
"name": "red",
"version": "0.0.1",
"description": "Anatomista de sites via terminal — CLI didática em português que disseca a stack, a infraestrutura e a arquitetura provável de um site, com evidências.",
"type": "module",
"bin": {
"red": "./dist/index.js"
},
"files": [
"dist",
"data"
],
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "tsx src/cli/index.ts",
"build": "tsup",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src",
"format": "prettier --write \"src/**/*.ts\"",
"fingerprints:update": "tsx scripts/update-fingerprints.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"cli",
"website",
"technology",
"fingerprint",
"stack",
"wappalyzer",
"portugues",
"didatico"
],
"author": "Pablo Murad",
"license": "MIT",
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"cheerio": "^1.0.0",
"chrome-launcher": "^1.1.2",
"cli-table3": "^0.6.5",
"commander": "^13.1.0",
"fast-xml-parser": "^4.5.1",
"got": "^14.4.5",
"lighthouse": "^12.3.0",
"ora": "^8.1.1",
"playwright": "^1.50.0",
"robots-parser": "^3.0.1"
},
"devDependencies": {
"@types/node": "^22.10.5",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
}
}
|