notification manager for bsky
noti.waow.tech
981 B
31 lines
1{
2 "name": "noti",
3 "version": "0.0.0",
4 "private": true,
5 "type": "module",
6 "scripts": {
7 "dev": "bun run build:client && bunx wrangler dev",
8 "build:client": "bun scripts/build-client.ts",
9 "deploy": "bun run build:client && bunx wrangler deploy",
10 "check": "bun run build:client && tsc --noEmit",
11 "check:dry-run": "bun run build:client && bunx wrangler deploy --dry-run",
12 "types:worker": "bunx wrangler types env.d.ts --include-runtime false",
13 "lint": "biome lint src scripts",
14 "lint:fix": "biome check --write src scripts"
15 },
16 "dependencies": {
17 "@anthropic-ai/sdk": "^0.89.0",
18 "@atproto/api": "^0.19.8",
19 "@atproto/oauth-client-node": "^0.3.17",
20 "@cloudflare/codemode": "^0.3.4",
21 "htmx.org": "2.0.4",
22 "zod": "^4.4.3"
23 },
24 "devDependencies": {
25 "@biomejs/biome": "^2.4.12",
26 "@cloudflare/workers-types": "^4.20260511.1",
27 "@types/bun": "^1.3.12",
28 "typescript": "^6.0.2",
29 "wrangler": "^4.90.1"
30 }
31}