{
  "name": "ember-simple-auth",
  "version": "8.3.1",
  "description": "A lightweight library for implementing authentication/authorization with Ember.js applications.",
  "keywords": [
    "ember-addon"
  ],
  "repository": "https://github.com/mainmatter/ember-simple-auth",
  "license": "MIT",
  "author": "Mainmatter GmbH",
  "files": [
    "addon-main.cjs",
    "declarations",
    "dist"
  ],
  "dependencies": {
    "@ember/test-waiters": "^3 || ^4",
    "@embroider/addon-shim": "^1.0.0",
    "ember-cookies": "^1.4.1"
  },
  "devDependencies": {
    "@babel/core": "7.28.6",
    "@babel/eslint-parser": "7.28.6",
    "@babel/plugin-proposal-class-properties": "7.18.6",
    "@babel/plugin-proposal-decorators": "7.28.6",
    "@babel/runtime": "7.28.6",
    "@embroider/addon-dev": "7.1.6",
    "@embroider/macros": "1.19.6",
    "@glint/core": "1.5.2",
    "@glint/environment-ember-loose": "1.5.2",
    "@glint/environment-ember-template-imports": "1.5.2",
    "@rollup/plugin-babel": "7.1.0",
    "@rollup/plugin-node-resolve": "16.0.3",
    "@tsconfig/ember": "3.0.12",
    "@types/ember__application": "4.0.11",
    "@types/ember__debug": "4.0.8",
    "@types/ember__object": "4.0.12",
    "@types/ember__routing": "4.0.23",
    "@types/ember__service": "4.0.9",
    "@typescript-eslint/eslint-plugin": "8.47.0",
    "@typescript-eslint/parser": "8.47.0",
    "concurrently": "9.2.1",
    "ember-template-lint": "7.9.3",
    "eslint": "9.39.2",
    "prettier": "3.6.2",
    "rollup": "4.53.3",
    "rollup-plugin-copy": "3.5.0",
    "typescript": "5.9.3",
    "webpack": "5.103.0"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org"
  },
  "ember": {
    "edition": "octane"
  },
  "ember-addon": {
    "version": 2,
    "type": "addon",
    "main": "addon-main.cjs",
    "app-js": {
      "./initializers/ember-simple-auth.js": "./dist/_app_/initializers/ember-simple-auth.js"
    }
  },
  "exports": {
    ".": {
      "default": "./dist/index.js",
      "types": "./declarations/index.d.ts"
    },
    "./*": {
      "default": "./dist/*.js",
      "types": "./declarations/*.d.ts"
    },
    "./addon-main.js": "./addon-main.cjs",
    "./authenticators/*": {
      "default": "./dist/authenticators/*.js",
      "types": "./declarations/authenticators/*.d.ts"
    },
    "./initializers/*": {
      "default": "./dist/initializers/*.js",
      "types": "./declarations/initializers/*.d.ts"
    },
    "./services/session": {
      "default": "./dist/services/session.js",
      "types": "./declarations/services/session.d.ts"
    },
    "./session-stores/*": {
      "default": "./dist/session-stores/*.js",
      "types": "./declarations/session-stores/*.d.ts"
    },
    "./test-support": {
      "default": "./dist/test-support/index.js",
      "types": "./declarations/test-support/index.d.ts"
    },
    "./utils/*": {
      "default": "./dist/utils/*.js",
      "types": "./declarations/utils/*.d.ts"
    }
  },
  "typesVersions": {
    "*": {
      "*": [
        "./declarations/*.d.ts"
      ]
    }
  },
  "peerDependencies": {
    "@ember/test-helpers": ">=4 || >= 3 || > 2.7",
    "ember-source": ">=6.0 || >=4.0"
  },
  "peerDependenciesMeta": {
    "@ember/test-helpers": {
      "optional": true
    }
  },
  "scripts": {
    "build": "rollup --config",
    "lint": "concurrently 'npm:lint:*(!fix)' --names 'lint:'",
    "lint:fix": "concurrently 'npm: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": "rollup --config --watch",
    "test": "echo 'A v2 addon does not have tests, run tests in test-app'",
    "release": "npm publish"
  }
}