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

Configure Feed

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

at b695298c5a188a4694bcb5b66e6c06f3755f79f0 48 lines 1.8 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.ts", 6 "dev": { 7 "dependencies": ["dev:db", "dev:api", "dev:ingest"] 8 }, 9 "codegen": "deno run -A jsr:@atp/lex-gen@^0.1.0-alpha.2 server -o ./lex -i ./lexicons", 10 "start": "deno run -A --env-file main.ts", 11 "docker-dev": "docker compose -f compose.dev.yaml up --build --watch" 12 }, 13 "imports": { 14 "@atp/bytes": "jsr:@atp/bytes@^0.1.0-alpha.3", 15 "@atp/common": "jsr:@atp/common@^0.1.0-alpha.9", 16 "@atp/crypto": "jsr:@atp/crypto@^0.1.0-alpha.3", 17 "@atp/identity": "jsr:@atp/identity@^0.1.0-alpha.2", 18 "@atp/lexicon": "jsr:@atp/lexicon@^0.1.0-alpha.4", 19 "@atp/repo": "jsr:@atp/repo@^0.1.0-alpha.5", 20 "@atp/sync": "jsr:@atp/sync@^0.1.0-alpha.8", 21 "@atp/syntax": "jsr:@atp/syntax@^0.1.0-alpha.2", 22 "@atp/xrpc": "jsr:@atp/xrpc@^0.1.0-alpha.4", 23 "@atp/xrpc-server": "jsr:@atp/xrpc-server@^0.1.0-alpha.9", 24 "@logtape/logtape": "jsr:@logtape/logtape@^1.3.7", 25 "@logtape/pretty": "jsr:@logtape/pretty@^1.3.7", 26 "@std/assert": "jsr:@std/assert@^1.0.18", 27 "dotenv": "npm:dotenv@^17.2.4", 28 "hono": "jsr:@hono/hono@^4.11.9", 29 "@std/encoding": "jsr:@std/encoding@^1.0.10", 30 "@atproto/api": "npm:@atproto/api@^0.16.11", 31 "jose": "npm:jose@^6.1.3", 32 "mongoose": "npm:mongoose@^8.23.0", 33 "multiformats": "npm:multiformats@^13.4.2", 34 "p-queue": "npm:p-queue@^8.1.1", 35 "mongodb-memory-server-core": "npm:mongodb-memory-server-core@^11.0.1", 36 "structured-headers": "npm:structured-headers@^2.0.2" 37 }, 38 "test": { 39 "permissions": { 40 "env": true, 41 "read": true, 42 "write": true, 43 "net": true, 44 "run": true, 45 "sys": true 46 } 47 } 48}