{
  "name": "ember-yeti-table",
  "version": "2.0.2",
  "description": "Lightweight and flexible tables addon.",
  "keywords": [
    "ember-addon",
    "table",
    "tables",
    "datagrid",
    "yeti"
  ],
  "homepage": "https://miguelcobain.github.io/ember-yeti-table",
  "repository": "https://github.com/miguelcobain/ember-yeti-table",
  "license": "MIT",
  "author": "Miguel Andrade <jmandrade0@gmail.com>",
  "directories": {
    "doc": "doc",
    "test": "tests"
  },
  "scripts": {
    "build": "rollup --config",
    "deploy": "ember deploy production",
    "eslint-config-check": "eslint --print-config . | eslint-config-prettier-check",
    "format:all": "run-s format:prettier format:eslint",
    "format:eslint": "eslint --fix \"**/*.js\"",
    "format:prettier": "prettier --write \"**/*.{js,scss,json,yaml,yml}\"",
    "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"",
    "lint:css": "stylelint \"**/*.css\" --allow-empty-input",
    "lint:css:fix": "concurrently \"pnpm:lint:css -- --fix\"",
    "lint:fix": "concurrently \"pnpm: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",
    "prepack": "rollup --config",
    "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"
  },
  "lint-staged": {
    "*.{js,gjs}": "eslint --fix",
    "*.{js,gjs,scss,json,yaml,yml,md}": "prettier --write"
  },
  "dependencies": {
    "@embroider/addon-shim": "^1.8.7",
    "@glimmer/component": "^1.0.0",
    "@glimmer/tracking": "^1.1.2",
    "@ember/test-waiters": "~3.1.0",
    "deepmerge": "^4.3.0",
    "ember-modifier": "^4.1.0",
    "ember-resources": "^7.0.0",
    "ember-template-imports": "^4.1.0",
    "reactiveweb": "^1.2.0",
    "tracked-toolbox": "^2.0.0"
  },
  "devDependencies": {
    "@babel/core": "^7.23.9",
    "@babel/plugin-proposal-decorators": "^7.23.9",
    "@babel/runtime": "^7.23.9",
    "@embroider/addon-dev": "^4.2.1",
    "@glint/template": "~1.3.0",
    "@rollup/plugin-babel": "^6.0.4",
    "babel-plugin-ember-template-compilation": "^2.2.1",
    "concurrently": "^8.2.2",
    "ember-source": "^4.12.4",
    "ember-template-lint": "~5.13.0",
    "rollup": "^4.10.0",
    "rollup-plugin-copy": "^3.5.0",
    "stylelint": "~16.2.1",
    "webpack": "^5.90.1"
  },
  "peerDependencies": {
    "ember-source": ">= 4.0.0"
  },
  "engines": {
    "node": "16.* || >= 18"
  },
  "ember": {
    "edition": "octane"
  },
  "ember-addon": {
    "app-js": {
      "./components/yeti-table.js": "./dist/_app_/components/yeti-table.js",
      "./components/yeti-table/body.js": "./dist/_app_/components/yeti-table/body.js",
      "./components/yeti-table/header.js": "./dist/_app_/components/yeti-table/header.js",
      "./components/yeti-table/pagination.js": "./dist/_app_/components/yeti-table/pagination.js",
      "./components/yeti-table/table.js": "./dist/_app_/components/yeti-table/table.js",
      "./components/yeti-table/tbody.js": "./dist/_app_/components/yeti-table/tbody.js",
      "./components/yeti-table/tbody/row.js": "./dist/_app_/components/yeti-table/tbody/row.js",
      "./components/yeti-table/tbody/row/cell.js": "./dist/_app_/components/yeti-table/tbody/row/cell.js",
      "./components/yeti-table/tfoot.js": "./dist/_app_/components/yeti-table/tfoot.js",
      "./components/yeti-table/tfoot/row.js": "./dist/_app_/components/yeti-table/tfoot/row.js",
      "./components/yeti-table/tfoot/row/cell.js": "./dist/_app_/components/yeti-table/tfoot/row/cell.js",
      "./components/yeti-table/thead.js": "./dist/_app_/components/yeti-table/thead.js",
      "./components/yeti-table/thead/row.js": "./dist/_app_/components/yeti-table/thead/row.js",
      "./components/yeti-table/thead/row/cell.js": "./dist/_app_/components/yeti-table/thead/row/cell.js",
      "./components/yeti-table/thead/row/column.js": "./dist/_app_/components/yeti-table/thead/row/column.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"
  ]
}
