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%
1.1 KB · 40 lines json
Raw Blame History
1{2  "name": "@llmindex/web",3  "version": "0.1.0",4  "private": true,5  "author": "Simon-Pierre Boucher <contact@spboucher.ai>",6  "license": "UNLICENSED",7  "scripts": {8    "dev": "next dev -p 3000",9    "build": "next build",10    "start": "next start -p 3100",11    "typecheck": "tsc --noEmit",12    "lint": "next lint",13    "test": "echo 'no unit tests for @llmindex/web (e2e via playwright)' && exit 0",14    "test:e2e": "playwright test"15  },16  "dependencies": {17    "@llmindex/db": "workspace:*",18    "@llmindex/items": "workspace:*",19    "@llmindex/scoring": "workspace:*",20    "@llmindex/ui": "workspace:*",21    "ioredis": "^5.4.1",22    "next": "14.2.15",23    "react": "^18.3.1",24    "react-dom": "^18.3.1"25  },26  "devDependencies": {27    "@llmindex/config": "workspace:*",28    "@playwright/test": "^1.47.0",29    "@types/node": "^22.5.4",30    "@types/react": "^18.3.5",31    "@types/react-dom": "^18.3.0",32    "autoprefixer": "^10.4.20",33    "eslint": "^8.57.0",34    "eslint-config-next": "14.2.15",35    "postcss": "^8.4.45",36    "tailwindcss": "^3.4.10",37    "typescript": "^5.5.4"38  }39}40