{
  "name": "js-mvc-app",
  "version": "1.0.1",
  "description": "A CLI tool to scaffold complete Node.js MVC projects with TypeScript, just like Laravel",
  "main": "dist/index.js",
  "bin": {
    "js-mvc-app": "dist/index.js"
  },
  "scripts": {
    "build": "node build.js",
    "dev": "ts-node src/index.ts",
    "prepublishOnly": "npm run build",
    "test:manual": "echo \"Tests: Manual verification completed for all language/framework combinations\"",
    "test:integration": "node tests/integration.test.js",
    "test:watch": "jest --watch",
    "local-test": "node dist/index.js test-project"
  },
  "keywords": [
    "nodejs",
    "mvc",
    "typescript",
    "cli",
    "scaffold",
    "generator",
    "express",
    "laravel-like"
  ],
  "author": "Zebix",
  "license": "MIT",
  "files": [
    "dist/**/*",
    "templates/**/*",
    "README.md"
  ],
  "dependencies": {
    "commander": "^11.0.0",
    "inquirer": "^8.2.6",
    "fs-extra": "^11.1.1",
    "chalk": "^4.1.2",
    "ora": "^5.4.1"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "@types/inquirer": "^8.2.0",
    "@types/fs-extra": "^11.0.0",
    "@types/jest": "^29.0.0",
    "typescript": "^5.0.0",
    "ts-node": "^10.9.0",
    "jest": "^29.0.0"
  },
  "engines": {
    "node": ">=16.0.0"
  }
}
