{
  "name": "@qonto/react-migration-toolkit",
  "version": "4.0.2",
  "description": "A toolkit to help migrate Ember components to React",
  "keywords": [
    "ember-addon"
  ],
  "repository": "https://github.com/qonto/react-migration-toolkit",
  "license": "MIT",
  "author": "",
  "exports": {
    "./react/providers": {
      "types": "./declarations/react/contexts/index.d.ts",
      "default": "./dist/react/contexts/index.js"
    },
    "./react/components": {
      "types": "./declarations/react/components/index.d.ts",
      "default": "./dist/react/components/index.js"
    },
    "./react/hooks": {
      "types": "./declarations/react/hooks/index.d.ts",
      "default": "./dist/react/hooks/index.js"
    },
    "./react/hooks/providers": {
      "types": "./declarations/react/hooks/providers/index.d.ts",
      "default": "./dist/react/hooks/providers/index.js"
    },
    "./*": {
      "types": "./declarations/*.d.ts",
      "default": "./dist/*.js"
    },
    "./addon-main.js": "./addon-main.cjs"
  },
  "typesVersions": {
    "*": {
      "*": [
        "declarations/*"
      ]
    }
  },
  "files": [
    "addon-main.cjs",
    "declarations",
    "dist"
  ],
  "dependencies": {
    "@embroider/addon-shim": "^1.8.7",
    "decorator-transforms": "^2.0.0",
    "ember-element-helper": "^0.8.6",
    "ember-modifier": "^4.1.0",
    "react": "^18.3.1",
    "react-dom": "^18.3.1"
  },
  "devDependencies": {
    "@babel/core": "7.24.6",
    "@babel/preset-react": "7.24.6",
    "@babel/preset-typescript": "7.24.6",
    "@babel/runtime": "7.24.6",
    "@embroider/addon-dev": "4.2.1",
    "@embroider/macros": "1.15.0",
    "@glimmer/component": "1.1.2",
    "@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",
    "@rollup/plugin-node-resolve": "15.2.3",
    "@tsconfig/ember": "3.0.6",
    "@types/ember": "4.0.11",
    "@types/ember__application": "4.0.11",
    "@types/ember__array": "4.0.10",
    "@types/ember__component": "4.0.22",
    "@types/ember__controller": "4.0.12",
    "@types/ember__debug": "4.0.8",
    "@types/ember__destroyable": "4.0.5",
    "@types/ember__engine": "4.0.11",
    "@types/ember__error": "4.0.6",
    "@types/ember__helper": "4.0.9",
    "@types/ember__modifier": "4.0.9",
    "@types/ember__object": "4.0.12",
    "@types/ember__owner": "4.0.9",
    "@types/ember__polyfills": "4.0.6",
    "@types/ember__routing": "4.0.22",
    "@types/ember__runloop": "4.0.10",
    "@types/ember__service": "4.0.9",
    "@types/ember__string": "3.16.3",
    "@types/ember__template": "4.0.7",
    "@types/ember__test": "4.0.6",
    "@types/ember__utils": "4.0.7",
    "@types/react": "18.3.1",
    "@types/react-dom": "18.3.0",
    "@typescript-eslint/eslint-plugin": "7.18.0",
    "@typescript-eslint/parser": "7.18.0",
    "babel-plugin-ember-template-compilation": "2.2.1",
    "concurrently": "8.2.2",
    "ember-template-lint": "6.0.0",
    "eslint": "8.57.1",
    "eslint-config-prettier": "9.1.0",
    "eslint-plugin-ember": "12.3.3",
    "eslint-plugin-n": "17.15.1",
    "eslint-plugin-prettier": "5.2.1",
    "prettier": "3.4.2",
    "prettier-plugin-ember-template-tag": "2.0.4",
    "rollup": "4.13.0",
    "rollup-plugin-copy": "3.5.0",
    "typescript": "5.4.2"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org"
  },
  "ember": {
    "edition": "octane"
  },
  "ember-addon": {
    "version": 2,
    "type": "addon",
    "main": "addon-main.cjs",
    "app-js": {
      "./components/react-bridge.js": "./dist/_app_/components/react-bridge.js"
    }
  },
  "peerDependencies": {
    "ember-source": "^3.28.0 || ^4.0.0 || ^5.0.0",
    "react-intl": "^7.1.14",
    "ember-intl": "^7.0.0 && <7.0.8"
  },
  "peerDependenciesMeta": {
    "react-intl": {
      "optional": true
    },
    "ember-intl": {
      "optional": true
    }
  },
  "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:hbs:fix": "ember-template-lint . --fix --no-error-on-unmatched-pattern",
    "lint:js": "eslint . --cache",
    "lint:js:fix": "eslint . --fix",
    "lint:types": "glint",
    "start": "concurrently 'pnpm:start:*'",
    "start:js": "rollup --config --watch --no-watch.clearScreen",
    "start:types": "glint --declaration --watch",
    "test": "echo 'A v2 addon does not have tests, run tests in test-app'"
  }
}