WIP! A BB-style forum, on the ATmosphere! We're still working... we'll be back soon when we have something to show off!
node typescript hono htmx atproto
at d794e29fc1ecea017b94eeb4c5c210a60c21b75b 24 lines 632 B view raw
1{ 2 "name": "@atbb/lexicon", 3 "version": "0.1.0", 4 "private": true, 5 "type": "module", 6 "main": "./dist/types/index.js", 7 "types": "./dist/types/index.d.ts", 8 "exports": { 9 ".": "./dist/types/index.js", 10 "./json/*": "./dist/json/*" 11 }, 12 "scripts": { 13 "build": "pnpm run build:json && pnpm run build:types", 14 "build:json": "tsx scripts/build.ts", 15 "build:types": "bash -c 'shopt -s globstar && lex gen-api --yes ./dist/types ./dist/json/**/*.json'", 16 "clean": "rm -rf dist" 17 }, 18 "devDependencies": { 19 "@atproto/lex-cli": "^0.5.0", 20 "tsx": "^4.0.0", 21 "yaml": "^2.7.0", 22 "glob": "^11.0.0" 23 } 24}