Files
oh-my-openagent/tests/hashline/package.json
YeonGyu-Kim d50c38f037 refactor(tests): rename benchmarks/ to tests/hashline/, remove FriendliAI dependency
- Move benchmarks/ → tests/hashline/
- Replace @friendliai/ai-provider with @ai-sdk/openai-compatible
- Remove all 'benchmark' naming (package name, scripts, env vars, session IDs)
- Fix import paths for new directory depth (../src → ../../src)
- Fix pre-existing syntax error in headless.ts (unclosed case block)
- Inject HASHLINE_EDIT_DESCRIPTION into test system prompt
- Scripts renamed: bench:* → test:*
2026-03-17 16:47:13 +09:00

19 lines
504 B
JSON

{
"name": "hashline-edit-tests",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Hashline edit tool integration tests using Vercel AI SDK",
"scripts": {
"test:basic": "bun run test-edit-ops.ts",
"test:edge": "bun run test-edge-cases.ts",
"test:multi": "bun run test-multi-model.ts",
"test:all": "bun run test:basic && bun run test:edge"
},
"dependencies": {
"@ai-sdk/openai-compatible": "^2.0.35",
"ai": "^6.0.94",
"zod": "^4.1.0"
}
}