@alexandrecode/clean-slate
Version:
A code hygiene tool for vibe coders
36 lines • 882 B
JSON
{
"name": "@alexandrecode/clean-slate",
"version": "1.0.0",
"description": "A code hygiene tool for vibe coders",
"main": "index.js",
"bin": {
"clean-slate": "bin/clean-slate.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "node -e \"try { require('fs').chmodSync(require('path').resolve(__dirname, 'bin/clean-slate.js'), '755'); } catch(e) { console.error(e); }\""
},
"keywords": [
"code",
"hygiene",
"linter",
"static",
"analysis",
"javascript",
"clean-code"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.4.0",
"glob": "^8.0.3",
"acorn": "^8.8.0",
"acorn-walk": "^8.2.0",
"markdown-table": "^3.0.2"
},
"preferGlobal": true,
"engines": {
"node": ">=12.0.0"
}
}