{ "name": "atproto-example-app", "version": "0.0.1", "description": "", "author": "", "license": "MIT", "main": "index.ts", "private": true, "scripts": { "dev": "tsx watch --clear-screen=false src/index.ts | pino-pretty", "build": "tsup", "start": "node dist/index.js", "clean": "rimraf dist coverage", "lint": "biome check src/", "lint:fix": "biome check src/ --fix", "format": "biome format src/", "test": "vitest run" }, "dependencies": { "@atproto/repo": "^0.4.1", "@atproto/syntax": "^0.3.0", "@atproto/xrpc-server": "^0.5.3", "better-sqlite3": "^11.1.2", "cors": "^2.8.5", "dotenv": "^16.4.5", "envalid": "^8.0.0", "express": "^4.19.2", "express-rate-limit": "^7.2.0", "helmet": "^7.1.0", "http-status-codes": "^2.3.0", "kysely": "^0.27.4", "multiformats": "^9.9.0", "pino-http": "^10.0.0" }, "devDependencies": { "@biomejs/biome": "1.8.3", "@types/better-sqlite3": "^7.6.11", "@types/cors": "^2.8.17", "@types/express": "^4.17.21", "lint-staged": "^15.2.2", "pino-pretty": "^11.0.0", "rimraf": "^5.0.0", "supertest": "^7.0.0", "tsup": "^8.0.2", "tsx": "^4.7.2", "typescript": "^5.4.4", "vite-tsconfig-paths": "^4.3.2", "vitest": "^2.0.0" }, "lint-staged": { "*.{js,ts,cjs,mjs,d.cts,d.mts,json,jsonc}": ["biome check --apply --no-errors-on-unmatched"] }, "tsup": { "entry": ["src", "!src/**/__tests__/**", "!src/**/*.test.*"], "splitting": false, "sourcemap": true, "clean": true } }