[READ ONLY MIRROR] Spark Social AppView Server github.com/sprksocial/server
atproto deno hono lexicon
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 3b73895e29748ca524bbe040b656ddb4e167104b 47 lines 1.7 kB view raw
1{ 2 "tasks": { 3 "dev:db": "mongod --dbpath ./devdb", 4 "dev:api": "deno run -A --watch main.ts", 5 "dev:ingest": "deno run -A --watch ingest/index.ts", 6 "dev:ingest:crosspost": "deno run -A --watch ingest/crosspost.ts", 7 "dev": { 8 "dependencies": ["dev:db", "dev:api", "dev:ingest"] 9 }, 10 "codegen": "deno run -A jsr:@atp/lex-gen@^0.1.0-alpha.2 server -o ./lex -i ./lexicons", 11 "start": "deno run -A main.ts", 12 "docker-dev": "docker compose -f compose.dev.yaml up --build --watch" 13 }, 14 "imports": { 15 "@atp/bytes": "jsr:@atp/bytes@^0.1.0-alpha.3", 16 "@atp/common": "jsr:@atp/common@^0.1.0-alpha.9", 17 "@atp/crypto": "jsr:@atp/crypto@^0.1.0-alpha.3", 18 "@atp/identity": "jsr:@atp/identity@^0.1.0-alpha.2", 19 "@atp/lexicon": "jsr:@atp/lexicon@^0.1.0-alpha.4", 20 "@atp/repo": "jsr:@atp/repo@^0.1.0-alpha.5", 21 "@atp/sync": "jsr:@atp/sync@^0.1.0-alpha.9", 22 "@atp/syntax": "jsr:@atp/syntax@^0.1.0-alpha.2", 23 "@atp/xrpc": "jsr:@atp/xrpc@^0.1.0-alpha.4", 24 "@atp/xrpc-server": "jsr:@atp/xrpc-server@^0.1.0-alpha.9", 25 "@std/assert": "jsr:@std/assert@^1.0.18", 26 "dotenv": "npm:dotenv@^17.3.1", 27 "hono": "jsr:@hono/hono@^4.11.9", 28 "@std/encoding": "jsr:@std/encoding@^1.0.10", 29 "@atproto/api": "npm:@atproto/api@^0.18.21", 30 "jose": "npm:jose@^6.1.3", 31 "mongoose": "npm:mongoose@^9.2.1", 32 "multiformats": "npm:multiformats@^13.4.2", 33 "p-queue": "npm:p-queue@^9.1.0", 34 "mongodb-memory-server-core": "npm:mongodb-memory-server-core@^11.0.1", 35 "structured-headers": "npm:structured-headers@^2.0.2" 36 }, 37 "test": { 38 "permissions": { 39 "env": true, 40 "read": true, 41 "write": true, 42 "net": true, 43 "run": true, 44 "sys": true 45 } 46 } 47}