{ "name": "@buster/access-controls", "version": "1.0.0", "description": "Access controls for the Buster platform", "license": "MIT", "type": "module", "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } }, "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "prebuild": "[ \"$SKIP_ENV_CHECK\" = \"true\" ] || tsx scripts/validate-env.ts", "build": "tsc", "build:dry-run": "tsc", "build:commonjs": "tsc --module commonjs --moduleResolution node", "build:commonjs:watch": "npm run build:commonjs && tsc --module commonjs --moduleResolution node --watch", "dev": "tsc --watch", "dev:fast": "tsc --watch", "lint": "biome check --write", "test": "vitest run", "test:unit": "vitest run --exclude '**/*.int.test.ts' --exclude '**/*.integration.test.ts' --passWithNoTests", "test:integration": "vitest run **/*.int.test.ts **/*.integration.test.ts", "test:coverage": "vitest run --coverage", "test:watch": "vitest", "typecheck": "tsc --noEmit" }, "dependencies": { "@buster/database": "workspace:*", "@buster/env-utils": "workspace:*", "@buster/typescript-config": "workspace:*", "@buster/vitest-config": "workspace:*", "lru-cache": "^11.1.0", "zod": "catalog:", "uuid": "catalog:", "drizzle-orm": "catalog:" } }