what-is-my-tech-stack
Version:
Analyze project dependencies and generate a human-readable tech stack description
46 lines • 1.11 kB
JSON
{
"name": "what-is-my-tech-stack",
"version": "1.0.0",
"description": "Analyze project dependencies and generate a human-readable tech stack description",
"type": "module",
"bin": {
"what-is-my-tech-stack": "./dist/cli/index.js"
},
"keywords": [
"tech-stack",
"dependencies",
"analyzer",
"project",
"node",
"python"
],
"author": "",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"dotenv": "^16.4.5",
"openai": "^4.28.0",
"ora": "^8.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@types/ora": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\""
}
}