File size: 1,654 Bytes
4fea3ee | 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 | {
"name": "@chahuadev/smart-roadmap",
"version": "1.0.0",
"description": "AI-Powered Development Roadmap Generator - Analyze projects, detect issues, generate actionable roadmaps automatically",
"main": "src/index.js",
"bin": {
"smart-roadmap": "./cli.js"
},
"scripts": {
"start": "node cli.js",
"scan": "node cli.js scan",
"analyze": "node cli.js analyze",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"roadmap",
"project-analysis",
"code-quality",
"development-planning",
"project-health",
"ai-powered",
"security-scanner",
"dependency-analyzer",
"test-coverage",
"technical-debt",
"chahuadev"
],
"author": {
"name": "Chahua Development Co., Ltd.",
"email": "dev@chahuadev.com",
"url": "https://chahuadev.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chahuadev-com/Chahuadev-smart-roadmap.git"
},
"bugs": {
"url": "https://github.com/chahuadev-com/Chahuadev-smart-roadmap/issues"
},
"homepage": "https://github.com/chahuadev-com/Chahuadev-smart-roadmap#readme",
"engines": {
"node": ">=16.0.0"
},
"optionalDependencies": {
"@babel/parser": "^7.28.5",
"acorn": "^8.15.0",
"eslint": "^8.54.0",
"esprima": "^4.0.1"
},
"peerDependenciesMeta": {
"@babel/parser": {
"optional": true
},
"acorn": {
"optional": true
},
"esprima": {
"optional": true
}
},
"files": [
"cli.js",
"src/",
"README.md",
"LICENSE"
]
}
|