this repo has no description
0
fork

Configure Feed

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

chore: package.json

+17 -4
+2 -1
package.json
··· 16 16 "dev:remanso": "cd packages/remanso && bun run dev", 17 17 "deploy:docs": "cd docs && bun run deploy", 18 18 "deploy:cli": "cd packages/cli && bun run deploy", 19 - "test:cli": "cd packages/cli && bun test" 19 + "deploy:remanso": "cd packages/remanso && bun run deploy", 20 + "test:cli": "cd packages/cli && bun test" 20 21 }, 21 22 "devDependencies": { 22 23 "@types/bun": "latest",
+15 -3
packages/remanso/package.json
··· 2 2 "name": "remanso-cli", 3 3 "version": "0.1.0", 4 4 "type": "module", 5 - "bin": { "remanso": "dist/index.js" }, 5 + "bin": { 6 + "remanso": "dist/index.js" 7 + }, 8 + "files": [ 9 + "dist", 10 + "README.md" 11 + ], 12 + "main": "./dist/index.js", 13 + "exports": { 14 + ".": "./dist/index.js" 15 + }, 6 16 "scripts": { 17 + "lint": "biome lint --write src", 18 + "format": "biome format --write src", 7 19 "build": "bun build src/index.ts --target node --outdir dist", 20 + "test": "bun test", 8 21 "dev": "bun run build && bun link", 9 - "lint": "biome lint --write src", 10 - "format": "biome format --write src" 22 + "deploy": "bun run build && bun publish" 11 23 }, 12 24 "dependencies": { 13 25 "@atproto/api": "^0.18.17",