TypeScript 97.5%
SQL 1.4%
Python 0.8%
1{2 "name": "@fetcha/routing",3 "version": "0.1.0",4 "private": true,5 "type": "module",6 "main": "./src/index.ts",7 "types": "./src/index.ts",8 "exports": {9 ".": "./src/index.ts"10 },11 "scripts": {12 "typecheck": "tsc -p tsconfig.json --noEmit",13 "test": "vitest run --passWithNoTests"14 },15 "dependencies": {16 "@fetcha/browser": "workspace:*",17 "@fetcha/core": "workspace:*",18 "@fetcha/providers": "workspace:*"19 },20 "devDependencies": {21 "@types/node": "^24.0.0",22 "typescript": "^5.9.3",23 "vitest": "^3.2.0"24 }25}26