This repository has no description
0

Configure Feed

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

stigmergic / package.json
1.7 kB 50 lines
1{ 2 "name": "stigmergic", 3 "version": "0.1.0", 4 "private": true, 5 "type": "module", 6 "scripts": { 7 "build:frontend": "bash build-frontend.sh", 8 "dev": "pnpm build:frontend && wrangler dev", 9 "deploy": "pnpm build:frontend && wrangler deploy", 10 "typecheck": "tsc --noEmit", 11 "island:explore": "bun run src/island-explore.ts", 12 "island:detect": "bun run src/island-detect.ts", 13 "island:discover": "bun run src/island-discover.ts", 14 "island:search": "bun run src/island-search.ts", 15 "island:analyze": "bun run src/island-analyze.ts", 16 "connection:detect": "bun run src/connection-detect.ts", 17 "island:publish": "bun run src/island-publish.ts", 18 "island:cleanup": "bun run src/island-cleanup.ts", 19 "vault:analyze": "bun run src/vault-analyze.ts", 20 "synthesis:to-oxa": "bun run src/synthesis-to-oxa.ts", 21 "rdf:link-cards": "bun run src/rdf-link-cards.ts", 22 "island:create": "bun run src/island-create.ts" 23 }, 24 "dependencies": { 25 "@atmo-dev/contrail": "^0.6.0", 26 "@atproto/api": "^0.19.17", 27 "@cloudflare/containers": "^0.1.0", 28 "@letta-ai/letta-code-sdk": "^0.1.14", 29 "@nandithebull/myst-oxa": "^0.1.8", 30 "hono": "^4.7.0", 31 "jsdom": "^29.1.1" 32 }, 33 "devDependencies": { 34 "@atcute/atproto": "^4.0.0", 35 "@atcute/lex-cli": "^2.8.1", 36 "@atcute/lexicons": "^2.0.0", 37 "@atmo-dev/contrail-lexicons": "^0.4.2", 38 "@atproto/oauth-client-browser": "^0.3.42", 39 "@cloudflare/workers-types": "^4.20250124.0", 40 "esbuild": "^0.28.0", 41 "typescript": "^5.7.3", 42 "wrangler": "^4.63.0" 43 }, 44 "pnpm": { 45 "onlyBuiltDependencies": [ 46 "esbuild", 47 "workerd" 48 ] 49 } 50}