TypeScript 55.4%
Python 43.2%
SQL 1.2%
1{2 "name": "@websensor/engine",3 "version": "0.1.0",4 "private": true,5 "type": "module",6 "scripts": {7 "dev": "tsx watch src/index.ts",8 "start": "tsx src/index.ts",9 "registry:sync": "tsx src/cli.ts sync",10 "discover": "tsx src/cli.ts discover",11 "run-once": "tsx src/cli.ts run-once",12 "typecheck": "tsc -p tsconfig.json --noEmit",13 "test": "vitest run --passWithNoTests"14 },15 "dependencies": {16 "@anthropic-ai/sdk": "^0.124.0",17 "@websensor/connectors": "workspace:*",18 "@websensor/core": "workspace:*",19 "@websensor/db": "workspace:*",20 "@websensor/store": "workspace:*",21 "fastify": "^5.4.0",22 "ioredis": "^5.6.0",23 "pino": "^9.7.0",24 "pino-pretty": "^13.0.0",25 "prom-client": "^15.1.0",26 "tsx": "^4.20.0",27 "yaml": "^2.8.0",28 "zod": "^4.0.0"29 },30 "devDependencies": {31 "@types/node": "^24.0.0",32 "typescript": "^5.9.3",33 "vitest": "^3.2.0"34 }35}36