{
  "name": "ember-autofocus-modifier",
  "version": "8.0.0",
  "description": "Wraps a modifier to autofocus an element in the DOM.",
  "keywords": [
    "ember-addon"
  ],
  "repository": {
    "type": "git",
    "url": "git@github.com:qonto/ember-autofocus-modifier.git"
  },
  "license": "MIT",
  "author": "",
  "files": [
    "addon-main.cjs",
    "declarations",
    "dist"
  ],
  "dependencies": {
    "@embroider/addon-shim": "^1.10.3",
    "ember-lifeline": "^7.1.0",
    "ember-modifier": "^4.3.0"
  },
  "devDependencies": {
    "@babel/core": "^7.29.7",
    "@babel/plugin-proposal-class-properties": "^7.18.6",
    "@babel/plugin-proposal-decorators": "^7.29.7",
    "@babel/plugin-syntax-decorators": "^7.29.7",
    "@babel/preset-typescript": "^7.29.7",
    "@embroider/addon-dev": "^8.3.1",
    "@glimmer/component": "^2.1.1",
    "@glint/core": "^1.5.2",
    "@glint/environment-ember-loose": "^1.5.2",
    "@glint/template": "^1.7.8",
    "@rollup/plugin-babel": "^7.1.0",
    "concurrently": "^10.0.3",
    "ember-template-lint": "^7.9.3",
    "eslint": "^10.6.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-ember": "^13.4.1",
    "eslint-plugin-prettier": "^5.5.6",
    "globals": "^17.7.0",
    "prettier": "^3.9.4",
    "rollup": "^4.62.2",
    "rollup-plugin-copy": "^3.5.0",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.62.1",
    "@ember/library-tsconfig": "^2.0.0"
  },
  "peerDependencies": {
    "ember-source": "^5.12.0 || ^6.8.0 || ^6.12.0 || ^7.0.0"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "ember": {
    "edition": "octane"
  },
  "ember-addon": {
    "version": 2,
    "type": "addon",
    "main": "addon-main.cjs",
    "app-js": {
      "./modifiers/autofocus.js": "./dist/_app_/modifiers/autofocus.js"
    }
  },
  "exports": {
    ".": {
      "types": "./declarations/index.d.ts",
      "default": "./dist/index.js"
    },
    "./*": {
      "types": "./declarations/*.d.ts",
      "default": "./dist/*.js"
    },
    "./addon-main.js": "./addon-main.cjs"
  },
  "typesVersions": {
    "*": {
      "*": [
        "declarations/*"
      ]
    }
  },
  "scripts": {
    "build": "concurrently 'pnpm:build:*'",
    "build:js": "rollup --config",
    "build:types": "glint --declaration",
    "lint": "concurrently 'pnpm:lint:*(!fix)' --names 'lint:'",
    "lint:fix": "concurrently 'pnpm:lint:*:fix' --names 'fix:'",
    "lint:hbs": "ember-template-lint . --no-error-on-unmatched-pattern",
    "lint:js": "eslint . --cache",
    "lint:types": "glint",
    "lint:hbs:fix": "ember-template-lint . --fix --no-error-on-unmatched-pattern",
    "lint:js:fix": "eslint . --fix",
    "start": "concurrently 'pnpm:start:*'",
    "start:js": "rollup --config --watch --no-watch.clearScreen",
    "start:types": "glint -d --watch",
    "test": "echo 'A v2 addon does not have tests, run tests in test-app'"
  }
}