A tool for parsing traffic on the jetstream and applying a moderation workstream based on regexp based rules
7
fork

Configure Feed

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

feat: Add Node.js development scripts

Adds scripts for running and developing the application using Node.js
and tsx. This provides an alternative execution environment.

+4 -2
+4 -2
package.json
··· 3 3 "version": "1.1.0", 4 4 "type": "module", 5 5 "scripts": { 6 - "start": "npx tsx src/main.ts", 7 - "dev": "npx tsx --watch src/main.ts", 6 + "start": "bun src/main.ts", 7 + "start:node": "npx tsx src/main.ts", 8 + "dev": "bun --watch src/main.ts", 9 + "dev:node": "npx tsx --watch src/main.ts", 8 10 "test": "vitest", 9 11 "test:ui": "vitest --ui", 10 12 "test:run": "vitest run",