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 main 44 lines 1.4 kB 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 ".": { 10 "types": "./dist/types/index.d.ts", 11 "import": "./dist/types/index.js", 12 "default": "./dist/types/index.js" 13 }, 14 "./json/*": "./dist/json/*", 15 "./dist/types/*": "./dist/types/*" 16 }, 17 "scripts": { 18 "build": "pnpm run build:json && pnpm run build:types && pnpm run build:fix-generated-types && pnpm run build:compile && pnpm run build:fix-imports", 19 "build:json": "tsx scripts/build.ts", 20 "build:types": "bash -c 'shopt -s globstar && lex gen-api --yes ./dist/types ./dist/json/**/*.json'", 21 "build:fix-generated-types": "tsx scripts/fix-generated-types.ts", 22 "build:compile": "tsc --project tsconfig.build.json", 23 "build:fix-imports": "tsx scripts/fix-imports.ts", 24 "test": "vitest run", 25 "lint": "tsc --noEmit", 26 "lint:fix": "oxlint --fix scripts/ lexicons/ __tests__/", 27 "clean": "rm -rf dist" 28 }, 29 "dependencies": { 30 "@atproto/api": "^0.15.0", 31 "@atproto/lexicon": "^0.6.1", 32 "@atproto/xrpc": "^0.7.7", 33 "multiformats": "^13.4.2" 34 }, 35 "devDependencies": { 36 "@atproto/lex-cli": "^0.9.8", 37 "@types/node": "^22.0.0", 38 "glob": "^11.0.0", 39 "tsx": "^4.0.0", 40 "typescript": "^5.7.0", 41 "vitest": "^3.1.0", 42 "yaml": "^2.7.0" 43 } 44}