{
  "name": "scaffoldrite",
  "version": "2.2.2",
  "description": "A project structure validator and generator CLI tool.",
  "author": "Isaac Anasonye",
  "license": "MIT",
  "homepage": "https://github.com/Isaacprogi/scaffoldrite#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/Isaacprogi/scaffoldrite.git"
  },
  "bugs": {
    "url": "https://github.com/Isaacprogi/scaffoldrite/issues"
  },
  "keywords": [
    "cli",
    "scaffold",
    "project-structure",
    "validator",
    "generator",
    "developer-tools",
    "devtools",
    "node"
  ],
  "type": "commonjs",
  "bin": {
    "scaffoldrite": "./dist/cli.js",
    "sr": "./dist/cli.js"
  },
  "files": [
    "dist",
    "src/frontend/dist"
  ],
  "scripts": {
    "dev": "tsx src/cli.ts",
    "build": "tsc",
    "build:frontend": "cd src/front && npm run build",
    "build:all": "npm run build:frontend && npm run build",
    "start": "node dist/cli.js",
    "type-check": "tsc --noEmit",
    "validate": "npm run type-check && npm run build",
    "test": "jest",
    "prepublishOnly": "npm run build && node dist/cli.js --help npm pack --dry-run",
    "release:test": "npm run build && node -e \"const { execSync } = require('child_process'); const name=require('./package.json').name; const version=require('./package.json').version; const file=`${name}-${version}.tgz`; execSync('npm pack', { stdio: 'inherit' }); execSync(`npm install -g ${file}`, { stdio: 'inherit' }); execSync('sr --help', { stdio: 'inherit' }); execSync('npm uninstall -g ${name}-${version}', { stdio: 'inherit' });\""
  },
  "devDependencies": {
    "@types/cli-progress": "^3.11.6",
    "@types/jest": "^30.0.0",
    "@types/node": "^25.8.0",
    "husky": "^9.1.7",
    "jest": "^30.2.0",
    "ts-jest": "^29.4.6",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3",
    "uuid": "^13.0.0"
  },
  "engines": {
    "node": ">=17"
  },
  "dependencies": {
    "chalk": "^5.6.2",
    "cli-progress": "^3.12.0",
    "cytoscape": "^3.33.1",
    "dotenv": "^17.2.3",
    "ignore": "^7.0.5",
    "minimatch": "^10.2.5",
    "node-fetch": "^3.3.2"
  }
}
