{
  "name": "@ioi-dev/vue-table",
  "version": "0.3.0",
  "description": "A performance-first Vue 3 data table component with a streamlined API surface and JavaScript-first defaults",
  "keywords": [
    "vue",
    "vue3",
    "vuejs",
    "table",
    "datatable",
    "data-table",
    "grid",
    "data-grid",
    "table-component",
    "vue-component",
    "virtual-scroll",
    "virtualization",
    "sorting",
    "filtering",
    "pagination",
    "typescript",
    "performance",
    "lightweight",
    "enterprise",
    "csv-export",
    "headless",
    "reactive",
    "composition-api"
  ],
  "author": "Rawand Hawez",
  "contributors": [
    "Rawand Hawez"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/Rawand-Hawez/ioi-vue-table.git"
  },
  "homepage": "https://rawand-hawez.github.io/ioi-vue-table/",
  "bugs": {
    "url": "https://github.com/Rawand-Hawez/ioi-vue-table/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "main": "./dist/ioi-vue-table.cjs",
  "module": "./dist/ioi-vue-table.js",
  "types": "./dist/index.d.ts",
  "sideEffects": [
    "**/*.css"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/ioi-vue-table.js",
      "require": "./dist/ioi-vue-table.cjs"
    },
    "./unstyled": {
      "types": "./dist/unstyled.d.ts",
      "import": "./dist/unstyled.js",
      "require": "./dist/unstyled.cjs"
    },
    "./styles.css": "./dist/style.css",
    "./style.css": "./dist/style.css",
    "./minimal": "./dist/minimal.css",
    "./minimal.css": "./dist/minimal.css",
    "./themes/shadcn.css": "./dist/themes/shadcn.css",
    "./utils/nestedPath": {
      "types": "./dist/utils/nestedPath.d.ts",
      "import": "./dist/utils/nestedPath.js",
      "require": "./dist/utils/nestedPath.cjs"
    },
    "./composables/useIoiTable": {
      "types": "./dist/composables/useIoiTable.d.ts",
      "import": "./dist/composables/useIoiTable.js",
      "require": "./dist/composables/useIoiTable.cjs"
    },
    "./composables/useColumnState": {
      "types": "./dist/composables/useColumnState.d.ts",
      "import": "./dist/composables/useColumnState.js",
      "require": "./dist/composables/useColumnState.cjs"
    }
  },
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md"
  ],
  "scripts": {
    "dev": "node ../../node_modules/vite/bin/vite.js --config vite.config.ts",
    "build": "node ../../node_modules/vite/bin/vite.js build --config vite.config.ts && node ../../node_modules/vue-tsc/bin/vue-tsc.js --declaration --emitDeclarationOnly --outDir dist -p tsconfig.build.json && node -e \"const fs=require('node:fs');fs.copyFileSync('src/minimal.css','dist/minimal.css');fs.copyFileSync('src/styles.css','dist/style.css');fs.mkdirSync('dist/themes',{recursive:true});fs.copyFileSync('src/themes/shadcn.css','dist/themes/shadcn.css')\"",
    "verify:artifact": "node ./scripts/verify-artifact.mjs",
    "prepack": "npm run build && npm run verify:artifact",
    "test": "node ../../node_modules/vitest/vitest.mjs run --config vitest.config.ts",
    "test:consumers": "npm run build && npm run verify:artifact && node ./scripts/test-packed-consumers.mjs",
    "test:coverage": "node ../../node_modules/vitest/vitest.mjs run --config vitest.config.ts --coverage",
    "typecheck": "node ../../node_modules/vue-tsc/bin/vue-tsc.js --noEmit -p tsconfig.json",
    "lint": "node ../../node_modules/eslint/bin/eslint.js \"src/**/*.{ts,vue}\" \"test/**/*.ts\""
  },
  "peerDependencies": {
    "vue": "^3.4.0"
  },
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^8.24.1",
    "@typescript-eslint/parser": "^8.24.1",
    "@vitejs/plugin-vue": "^5.2.1",
    "@vitest/coverage-v8": "^2.1.9",
    "@vue/test-utils": "^2.4.6",
    "eslint": "^8.57.1",
    "eslint-plugin-vue": "^9.32.0",
    "jsdom": "^25.0.1",
    "typescript": "^5.7.3",
    "vite": "^5.4.14",
    "vitest": "^2.1.8",
    "vue": "^3.4.38",
    "vue-tsc": "^2.2.0"
  }
}
