This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

papers / package.json
960 B 35 lines
1{ 2 "name": "papers-appview", 3 "version": "0.0.1", 4 "private": true, 5 "type": "module", 6 "scripts": { 7 "build:frontend": "bash build-frontend.sh", 8 "dev": "pnpm build:frontend && wrangler dev", 9 "deploy": "pnpm build:frontend && CLOUDFLARE_API_TOKEN=$CLOUDFLARE_API_TOKEN wrangler deploy", 10 "typecheck": "tsc --noEmit", 11 "backfill": "pnpm contrail backfill", 12 "backfill:remote": "pnpm contrail backfill --remote", 13 "lex": "contrail-lex all", 14 "lex:publish": "contrail-lex publish" 15 }, 16 "dependencies": { 17 "@atmo-dev/contrail": "^0.6.0", 18 "@nandithebull/myst-oxa": "^0.1.8", 19 "hono": "^4.7.0" 20 }, 21 "devDependencies": { 22 "@atcute/lex-cli": "^2.8.1", 23 "@atmo-dev/contrail-lexicons": "^0.4.6", 24 "@cloudflare/workers-types": "^4.20250124.0", 25 "esbuild": "^0.28.0", 26 "typescript": "^5.7.3", 27 "wrangler": "^4.63.0" 28 }, 29 "pnpm": { 30 "onlyBuiltDependencies": [ 31 "esbuild", 32 "workerd" 33 ] 34 } 35}