{
  "name": "<%= addonName %>",
  "version": "0.0.0",
  "description": "The default blueprint for Embroider v2 addons.",
  "keywords": [
    "ember-addon"
  ],
  "repository": "",
  "license": "MIT",
  "author": "",
  "files": [
    "addon-main.cjs",
    "declarations",
    "dist"
  ],
  "scripts": {
    "build": "rollup --config",
    "format": "prettier . --cache --write",
    "lint": "concurrently \"<%= packageManager %>:lint:*(!fix)\" --names \"lint:\" --prefixColors auto",
    "lint:fix": "concurrently \"<%= packageManager %>:lint:*:fix\" --names \"fix:\" --prefixColors auto && <%= packageManager %> run format",
    "lint:format": "prettier . --cache --check",
    "lint:hbs": "ember-template-lint . --no-error-on-unmatched-pattern",
    "lint:js": "eslint . --cache",
    "lint:hbs:fix": "ember-template-lint . --fix --no-error-on-unmatched-pattern",
    "lint:js:fix": "eslint . --fix",<% if (typescript) { %>
    "lint:types": "glint",<% } %>
    "start": "rollup --config --watch",
    "test": "echo 'A v2 addon does not have tests, run tests in test-app'",
    "prepack": "rollup --config"
  },
  "dependencies": {
    "@embroider/addon-shim": "^1.8.9",
    "decorator-transforms": "^2.2.2"
  },
  "devDependencies": {
    "@babel/core": "^7.25.2",
    <% if (typescript) { %>"@babel/plugin-transform-typescript": "^7.25.2",<% } %>
    "@babel/eslint-parser": "^7.25.1",
    "@babel/runtime": "^7.25.6",<% if (typescript) { %>
    "@ember/library-tsconfig": "^1.1.3",<% } %>
    "@eslint/js": "^9.17.0",
    "@embroider/addon-dev": "^7.1.0",<% if (typescript) { %>
    "@glint/core": "^1.4.0",
    "@glint/environment-ember-loose": "^1.4.0",
    "@glint/environment-ember-template-imports": "^1.4.0",
    "@glint/template": "^1.4.0",<% } %>
    "@rollup/plugin-babel": "^6.0.4",
    "babel-plugin-ember-template-compilation": "^2.2.5",
    "concurrently": "^9.0.1",
    "ember-source": "^5.4.0",
    "ember-template-lint": "^6.0.0",
    "eslint": "^9.17.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-ember": "^12.3.3",
    "eslint-plugin-import": "^2.31.0",
    "eslint-plugin-n": "^17.15.1",
    "globals": "^15.14.0",
    "prettier": "^3.4.2",
    "prettier-plugin-ember-template-tag": "^2.0.4",
    "rollup": "^4.22.5"<% if (!isExistingMonorepo) { %>,
    "rollup-plugin-copy": "^3.5.0"<% } %><% if (typescript) { %>,
    "typescript-eslint": "^8.19.1",
    "typescript": "~5.6.0"<% } %>
  },
  "ember": {
    "edition": "octane"
  },
  "ember-addon": {
    "version": 2,
    "type": "addon",
    "main": "addon-main.cjs"
  },
  "exports": {<% if (typescript) { %>
    ".": {
      "types": "./declarations/index.d.ts",
      "default": "./dist/index.js"
    },
    "./*": {
      "types": "./declarations/*.d.ts",
      "default": "./dist/*.js"
    },<% } else { %>
    ".": "./dist/index.js",
    "./*": "./dist/*.js",<% } %>
    "./addon-main.js": "./addon-main.cjs"
  }<% if (typescript) { %>,
  "typesVersions": {
    "*": {
      "*": [
        "declarations/*"
      ]
    }
  }<% } %>
}
