SPB Git

spb/llmindex Public

The discriminative, contamination-resistant, fully transparent LLM ranking — updated live.

TypeScript 77.9% TeX 15.2% Python 3.7% SQL 1.4% JavaScript 1.1% Shell 0.5%
951 B · 35 lines json
Raw Blame History
1{2  "name": "@llmindex/db",3  "version": "0.1.0",4  "private": true,5  "author": "Simon-Pierre Boucher <contact@spboucher.ai>",6  "license": "UNLICENSED",7  "type": "module",8  "main": "src/index.ts",9  "types": "src/index.ts",10  "scripts": {11    "generate": "prisma generate",12    "migrate:dev": "prisma migrate dev",13    "migrate:deploy": "prisma migrate deploy",14    "seed": "tsx src/seed.ts",15    "typecheck": "tsc --noEmit",16    "lint": "eslint src",17    "test": "echo 'no tests for @llmindex/db' && exit 0"18  },19  "dependencies": {20    "@llmindex/openrouter": "workspace:*",21    "@llmindex/scoring": "workspace:*",22    "@prisma/client": "^5.19.1"23  },24  "devDependencies": {25    "@llmindex/config": "workspace:*",26    "@types/node": "^22.20.1",27    "@typescript-eslint/eslint-plugin": "^7.18.0",28    "@typescript-eslint/parser": "^7.18.0",29    "eslint": "^8.57.0",30    "prisma": "^5.19.1",31    "tsx": "^4.19.0",32    "typescript": "^5.5.4"33  }34}35