{
  "name": "ember-content-editable-modifier",
  "version": "4.0.3",
  "description": "An ember modifier that enables contenteditable fields",
  "keywords": [
    "ember-addon",
    "content-editable",
    "contenteditable",
    "modifier"
  ],
  "repository": "https://github.com/st-h/ember-content-editable-modifier",
  "license": "MIT",
  "author": "st-h",
  "directories": {
    "doc": "doc",
    "test": "tests"
  },
  "dependencies": {
    "@embroider/addon-shim": "^1.10.2",
    "ember-modifier": "^4.3.0"
  },
  "devDependencies": {
    "@babel/core": "^7.29.0",
    "@babel/plugin-proposal-class-properties": "^7.18.6",
    "@babel/plugin-proposal-decorators": "^7.29.0",
    "@embroider/addon-dev": "^8.3.0",
    "@rollup/plugin-babel": "^6.1.0",
    "rollup": "^4.57.1",
    "rollup-plugin-copy": "^3.5.0"
  },
  "engines": {
    "node": "14.* || 16.* || >= 18"
  },
  "ember": {
    "edition": "octane"
  },
  "ember-addon": {
    "app-js": {
      "./modifiers/content-editable.js": "./dist/_app_/modifiers/content-editable.js"
    },
    "main": "addon-main.cjs",
    "type": "addon",
    "version": 2
  },
  "exports": {
    ".": "./dist/index.js",
    "./*": "./dist/*.js",
    "./addon-main.js": "./addon-main.cjs"
  },
  "files": [
    "addon-main.cjs",
    "dist"
  ],
  "scripts": {
    "build": "rollup --config",
    "lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
    "lint:css": "stylelint \"**/*.css\"",
    "lint:css:fix": "concurrently \"npm:lint:css -- --fix\"",
    "lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
    "lint:hbs": "ember-template-lint .",
    "lint:hbs:fix": "ember-template-lint . --fix",
    "lint:js": "eslint . --cache",
    "lint:js:fix": "eslint . --fix",
    "start": "rollup --config --watch",
    "test": "echo 'A v2 addon does not have tests, run tests in test-app'",
    "test:ember": "ember test",
    "test:ember-compatibility": "ember try:each"
  }
}