Demonstration bridge between ATproto and GraphQL. Generate schema types and interface with the ATmosphere via GraphQL queries. Includes a TypeScript server with IDE.
1{
2 "name": "js",
3 "version": "1.0.0",
4 "description": "",
5 "type": "module",
6 "main": "src/bin/main.ts",
7 "scripts": {
8 "test": "vitest run",
9 "generate": "tsx src/bin/generate",
10 "server": "tsx src/bin/server"
11 },
12 "keywords": [],
13 "author": "",
14 "license": "ISC",
15 "devDependencies": {
16 "@atproto/lex": "^0.0.23",
17 "@atproto/lex-cli": "^0.9.9",
18 "@types/node": "^25.5.0",
19 "tsx": "^4.21.0",
20 "typescript": "^6.0.2",
21 "vitest": "^4.1.2"
22 },
23 "dependencies": {
24 "express": "^5.2.1",
25 "glob": "^13.0.6",
26 "graphql": "^15.10.2",
27 "graphql-http": "^1.22.4",
28 "ruru": "^2.0.0"
29 }
30}