mirror of
https://github.com/dogkeeper886/ollama37.git
synced 2025-12-21 13:17:05 +00:00
- Add .github/workflows/build-test.yml for automated testing - Add tests/ directory with TypeScript test runner - Add docs/CICD.md documentation - Remove .gitlab-ci.yml (migrated to GitHub Actions) - Update .gitignore for test artifacts 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
34 lines
850 B
JSON
34 lines
850 B
JSON
{
|
|
"name": "ollama37-test-runner",
|
|
"version": "1.0.0",
|
|
"description": "Scalable test runner with LLM-as-judge for ollama37",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"bin": {
|
|
"ollama37-test": "dist/cli.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/cli.js",
|
|
"dev": "tsx src/cli.ts",
|
|
"test": "tsx src/cli.ts run",
|
|
"test:build": "tsx src/cli.ts run --suite build",
|
|
"test:runtime": "tsx src/cli.ts run --suite runtime",
|
|
"test:inference": "tsx src/cli.ts run --suite inference"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.7.2",
|
|
"chalk": "^5.3.0",
|
|
"commander": "^12.1.0",
|
|
"glob": "^10.3.10",
|
|
"js-yaml": "^4.1.0",
|
|
"p-limit": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^20.14.0",
|
|
"tsx": "^4.16.0",
|
|
"typescript": "^5.5.0"
|
|
}
|
|
}
|