analyze-project-structure
Version:
CLI tool for analyzing and printing the folder structure of a project, extracting details about files (such as functions, variables, routes, and imports/exports), and summarizing the project's code organization.
32 lines (31 loc) • 788 B
JSON
{
"name": "analyze-project-structure",
"version": "1.0.1",
"description": "CLI tool for analyzing and printing the folder structure of a project, extracting details about files (such as functions, variables, routes, and imports/exports), and summarizing the project's code organization.",
"main": "index.js",
"bin": {
"analyze-project-structure": "./index.js",
"aps": "./index.js"
},
"scripts": {
"start": "node index.js"
},
"dependencies": {
"@typescript-eslint/typescript-estree": "^5.0.0",
"acorn": "^8.8.2"
},
"keywords": [
"folder",
"structure",
"cli",
"command-line",
"analyze",
"project",
"code-organization",
"functions",
"variables",
"routes"
],
"author": "Prasad Dhule",
"license": "ISC"
}