{
  "name": "@bertdeblock/gember",
  "version": "1.8.0",
  "description": "Generators for Ember apps and addons.",
  "repository": "https://github.com/bertdeblock/gember",
  "license": "MIT",
  "author": "Bert De Block",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "bin": {
    "gember": "bin/gember.js"
  },
  "files": [
    "bin/",
    "dist/",
    "templates/",
    "CHANGELOG.md"
  ],
  "dependencies": {
    "@napi-rs/clipboard": "^1.1.3",
    "change-case": "^5.4.4",
    "citty": "^0.2.1",
    "consola": "^3.4.2",
    "find-up": "^7.0.0",
    "fs-extra": "^11.3.4",
    "handlebars": "^4.7.8"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/fs-extra": "^11.0.4",
    "@types/node": "^24.10.1",
    "@vitest/coverage-v8": "^3.2.4",
    "combinations": "^1.0.0",
    "concurrently": "^9.2.1",
    "eslint": "^10.1.0",
    "eslint-plugin-n": "^17.24.0",
    "execa": "^9.6.1",
    "prettier": "^3.8.1",
    "recursive-copy": "^2.0.14",
    "release-plan": "^0.17.4",
    "type-fest": "^5.5.0",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.57.1",
    "uuid": "^13.0.0",
    "vitest": "^3.2.4"
  },
  "engines": {
    "node": ">= 18"
  },
  "volta": {
    "node": "24.14.0",
    "pnpm": "10.32.1"
  },
  "scripts": {
    "build": "tsc --project tsconfig.json",
    "dev": "pnpm build --watch",
    "format": "prettier . --cache --write",
    "gember": "GEMBER_CWD=test/output bin/gember.js",
    "lint": "concurrently --group --prefix-colors auto \"pnpm:lint:*(!fix)\"",
    "lint:fix": "concurrently --group --prefix-colors auto \"pnpm:lint:*:fix\"",
    "lint:format": "prettier . --cache --check",
    "lint:js": "eslint . --cache",
    "lint:types": "tsc --noEmit",
    "test": "rm -rf test/output && vitest",
    "test:coverage": "pnpm build && vitest run --coverage"
  }
}