mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-21 16:18:55 +00:00
apps/shared had lint:fix but not the 'fix' alias that other workspaces have. The js-tests check job runs 'npm run fix' as a second step, so this workspace was failing with 'Missing script: fix'.
24 lines
524 B
JSON
24 lines
524 B
JSON
{
|
|
"name": "@hermes/shared",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"types": "./src/index.ts",
|
|
"scripts": {
|
|
"lint": "eslint src/",
|
|
"lint:fix": "eslint src/ --fix",
|
|
"fix": "npm run lint:fix",
|
|
"typecheck": "tsc -p . --noEmit",
|
|
"check": "npm run typecheck"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.4",
|
|
"eslint": "^9.39.4",
|
|
"globals": "^17.4.0",
|
|
"typescript": "^6.0.3",
|
|
"typescript-eslint": "^8.56.1"
|
|
}
|
|
}
|