mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-20 15:33:54 +00:00
18 lines
412 B
JSON
18 lines
412 B
JSON
{
|
|
"name": "@hermes/root-tests",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
"test": "vitest run",
|
|
"check": "npm run typecheck && npm run test",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"fix": "npm run lint:fix"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^9.39.4",
|
|
"typescript": "^6.0.3",
|
|
"vitest": "^4.1.9"
|
|
}
|
|
}
|