This repository has no description
1

Configure Feed

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

at main 1.1 kB View raw
1{ 2 "name": "loup-cli", 3 "version": "0.4.0", 4 "description": "Turn user session recordings into cited pull requests and issues on Tangled", 5 "keywords": [ 6 "tangled", 7 "atproto", 8 "session-recording", 9 "code-review", 10 "pull-request", 11 "webhook", 12 "agent" 13 ], 14 "license": "MIT", 15 "author": "Filip Stål", 16 "homepage": "https://tangled.org/filipstal.tngl.sh/loup", 17 "repository": { 18 "type": "git", 19 "url": "git+https://tangled.org/filipstal.tngl.sh/loup.git" 20 }, 21 "type": "module", 22 "bin": { 23 "loup": "bin/loup.mjs" 24 }, 25 "engines": { 26 "node": ">=20" 27 }, 28 "files": [ 29 "bin", 30 "src", 31 "demo", 32 "loup.config.json", 33 "README.md" 34 ], 35 "scripts": { 36 "serve": "node bin/loup.mjs serve", 37 "demo": "node bin/loup.mjs serve --demo", 38 "typecheck": "tsc --noEmit" 39 }, 40 "dependencies": { 41 "@anthropic-ai/sdk": "^0.106.0", 42 "@atproto/api": "^0.13.18", 43 "busboy": "^1.6.0", 44 "tsx": "^4.19.2" 45 }, 46 "devDependencies": { 47 "@types/busboy": "^1.5.4", 48 "@types/node": "^22.10.0", 49 "typescript": "^5.7.2" 50 } 51}