{
  "name": "@affino/datagrid-vue",
  "version": "0.6.0",
  "author": "Anton Pavlov <a.pavlov@affino.dev>",
  "type": "module",
  "description": "Vue adapter and headless foundation for Affino DataGrid",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./app": {
      "types": "./dist/app/index.d.ts",
      "import": "./dist/app/index.js"
    },
    "./app/worker": {
      "types": "./dist/app/worker.d.ts",
      "import": "./dist/app/worker.js"
    },
    "./stable": {
      "types": "./dist/stable.d.ts",
      "import": "./dist/stable.js"
    },
    "./advanced": {
      "types": "./dist/advanced.d.ts",
      "import": "./dist/advanced.js"
    },
    "./advanced/layout": {
      "types": "./dist/advanced/layout.d.ts",
      "import": "./dist/advanced/layout.js"
    },
    "./advanced/pointer": {
      "types": "./dist/advanced/pointer.d.ts",
      "import": "./dist/advanced/pointer.js"
    },
    "./advanced/selection": {
      "types": "./dist/advanced/selection.d.ts",
      "import": "./dist/advanced/selection.js"
    },
    "./advanced/editing": {
      "types": "./dist/advanced/editing.d.ts",
      "import": "./dist/advanced/editing.js"
    },
    "./advanced/clipboard": {
      "types": "./dist/advanced/clipboard.d.ts",
      "import": "./dist/advanced/clipboard.js"
    },
    "./advanced/filtering": {
      "types": "./dist/advanced/filtering.d.ts",
      "import": "./dist/advanced/filtering.js"
    },
    "./advanced/history": {
      "types": "./dist/advanced/history.d.ts",
      "import": "./dist/advanced/history.js"
    },
    "./worker": {
      "types": "./dist/worker.d.ts",
      "import": "./dist/worker.js"
    }
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "sideEffects": false,
  "peerDependencies": {
    "pinia": "^2.1.0 || ^3.0.0",
    "vue": "^3.3.0",
    "@affino/datagrid-theme": "^0.2.5"
  },
  "peerDependenciesMeta": {
    "@affino/datagrid-theme": {
      "optional": true
    }
  },
  "dependencies": {
    "@affino/datagrid-core": "0.6.0",
    "@affino/datagrid-orchestration": "0.5.1",
    "@affino/datagrid-pivot": "0.2.0",
    "@affino/datagrid-worker": "0.6.0"
  },
  "devDependencies": {
    "@affino/datagrid-theme": "^0.2.5"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/affinio/datagrid.git",
    "directory": "packages/datagrid-vue"
  },
  "homepage": "https://github.com/affinio/datagrid/tree/main/packages/datagrid-vue#readme",
  "license": "MIT",
  "keywords": [
    "datagrid",
    "vue",
    "adapter",
    "headless",
    "adapter"
  ],
  "bugs": {
    "url": "https://github.com/affinio/datagrid/issues"
  },
  "module": "dist/index.js",
  "scripts": {
    "build": "rm -rf dist tsconfig.public.tsbuildinfo && pnpm --filter @affino/datagrid-core build && pnpm --filter @affino/datagrid-orchestration build && pnpm --filter @affino/datagrid-worker build && tsc -p tsconfig.public.json && node ../../scripts/fix-esm-specifiers.mjs dist",
    "type-check": "tsc -p tsconfig.json --noEmit",
    "type-check:public": "node ./scripts/type-check-public.mjs",
    "test:unit": "vitest run --config vitest.config.ts --passWithNoTests",
    "test:contracts": "vitest run --config vitest.config.ts --testNamePattern=\"contract\"",
    "test:strict-contracts": "vitest run --config vitest.config.ts --testNamePattern=\"contract|lifecycle|property|stress|determinism\" --passWithNoTests",
    "test:integration": "vitest run --config vitest.config.ts --testNamePattern=\"contract|integration|property|stress\" --passWithNoTests",
    "test:coverage": "vitest run --config vitest.config.ts --coverage",
    "test": "npm run type-check"
  }
}