the statusphere demo reworked into a vite/react app in a monorepo
1{
2 "name": "@statusphere/lexicon",
3 "version": "0.0.1",
4 "description": "Generated API client for Statusphere lexicons",
5 "author": "",
6 "license": "MIT",
7 "main": "dist/index.js",
8 "types": "dist/index.d.ts",
9 "private": true,
10 "scripts": {
11 "build": "pnpm lexgen && tsup",
12 "dev": "tsup --watch",
13 "clean": "rimraf dist",
14 "typecheck": "tsc --noEmit",
15 "lexgen": "lex gen-api ./src ../../lexicons/xyz/statusphere/* ../../lexicons/com/atproto/*/* ../../lexicons/app/bsky/*/* --yes && pnpm format",
16 "format": "prettier --write src"
17 },
18 "dependencies": {
19 "@atproto/api": "^0.14.7",
20 "@atproto/lexicon": "^0.4.7",
21 "@atproto/syntax": "^0.3.3",
22 "@atproto/xrpc": "^0.6.9",
23 "multiformats": "^13.3.2"
24 },
25 "devDependencies": {
26 "@atproto/lex-cli": "^0.6.1",
27 "@types/node": "^22.13.8",
28 "rimraf": "^6.0.1",
29 "tsup": "^8.4.0",
30 "typescript": "^5.8.2"
31 },
32 "tsup": {
33 "entry": [
34 "src/index.ts"
35 ],
36 "format": [
37 "cjs",
38 "esm"
39 ],
40 "dts": true,
41 "sourcemap": true,
42 "clean": true
43 }
44}