{
  "name": "@a4anthony/proctorkit-sdk",
  "version": "0.2.0",
  "description": "Framework-agnostic browser SDK for the proctoring platform",
  "license": "MIT",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./worker": {
      "import": "./dist/worker.js"
    },
    "./worker-url": {
      "import": "./dist/worker.js"
    }
  },
  "files": [
    "dist",
    "src",
    "!**/*.test.ts",
    "!**/dbg.*"
  ],
  "dependencies": {
    "idb": "^8.0.3",
    "rrweb": "2.1.1",
    "@a4anthony/proctorkit-types": "0.3.0"
  },
  "devDependencies": {
    "@tailwindcss/vite": "^4.3.0",
    "@vitejs/plugin-vue": "^5.2.0",
    "fake-indexeddb": "^6",
    "happy-dom": "^15",
    "typescript": "^5.7.2",
    "vite": "^5",
    "vite-plugin-static-copy": "^2.3.1",
    "vitest": "^2",
    "vue": "^3.4.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "rm -rf dist *.tsbuildinfo && pnpm run build:types && pnpm run build:lib && pnpm run build:worker",
    "build:types": "tsc -p tsconfig.build.json --emitDeclarationOnly",
    "build:lib": "vite build",
    "build:worker": "vite build --mode worker",
    "dev": "tsc -p tsconfig.json --watch",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "e2e:server": "vite --config e2e/vite.host.config.ts",
    "build:host": "pnpm run build:worker && vite build --config e2e/vite.host.build.config.ts",
    "clean": "rm -rf dist .turbo e2e/host-dist"
  }
}