forked from
samuel.fm/statusphere-react
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 "module": "dist/index.mjs",
9 "types": "dist/index.d.ts",
10 "exports": {
11 ".": {
12 "types": "./dist/index.d.ts",
13 "import": "./dist/index.mjs",
14 "require": "./dist/index.js"
15 }
16 },
17 "private": true,
18 "scripts": {
19 "build": "pnpm lexgen && tsup",
20 "dev": "tsup --watch",
21 "clean": "rimraf dist",
22 "typecheck": "tsc --noEmit",
23 "lexgen": "lex gen-api ./src ../../lexicons/xyz/statusphere/* ../../lexicons/com/atproto/*/* ../../lexicons/app/bsky/*/* --yes && pnpm format",
24 "format": "prettier --write src"
25 },
26 "dependencies": {
27 "@atproto/api": "^0.14.7",
28 "@atproto/lexicon": "^0.4.7",
29 "@atproto/syntax": "^0.3.3",
30 "@atproto/xrpc": "^0.6.9",
31 "multiformats": "^13.3.2"
32 },
33 "devDependencies": {
34 "@atproto/lex-cli": "^0.6.1",
35 "@types/node": "^22.13.8",
36 "rimraf": "^6.0.1",
37 "tsup": "^8.4.0",
38 "typescript": "^5.8.2"
39 },
40 "tsup": {
41 "entry": [
42 "src/index.ts"
43 ],
44 "format": [
45 "cjs",
46 "esm"
47 ],
48 "dts": true,
49 "sourcemap": true,
50 "clean": true
51 }
52}