{
  "name": "projected",
  "version": "3.0.2",
  "description": "Collections of objects that rely on remote data sources. Hides the complexity of fetching and caching data from a remote source",
  "type": "module",
  "author": "admin@entwico.com",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/entwico/projected"
  },
  "devDependencies": {
    "@changesets/cli": "^2.31.0",
    "@entwico/eslint-config": "^1.5.0",
    "@types/node": "^25.9.1",
    "@vitest/coverage-istanbul": "^4.1.7",
    "eslint": "^9.39.2",
    "typescript": "^5.9.3",
    "vite": "^8.0.13",
    "vite-plugin-dts": "^5.0.1",
    "vitest": "^4.1.7"
  },
  "files": [
    "dist"
  ],
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.umd.cjs"
    }
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "scripts": {
    "start": "vite build --watch",
    "build": "vite build",
    "test": "vitest",
    "coverage": "vitest run --coverage",
    "clear": "rm -rf dist",
    "lint": "eslint --cache src",
    "lint:fix": "pnpm lint --fix",
    "typecheck": "tsc --noEmit",
    "validate": "pnpm lint && pnpm typecheck && pnpm coverage",
    "ci:version": "changeset version && pnpm install --no-frozen-lockfile",
    "ci:publish": "changeset publish"
  }
}