VIBECODINGENGLISH/package.json

29 lines
771 B
JSON

{
"name": "vibecoding-english-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint packages/*/src --ext .ts",
"lint:fix": "eslint packages/*/src --ext .ts --fix",
"type-check": "tsc --noEmit",
"clean": "rimraf packages/*/dist packages/*/out"
},
"devDependencies": {
"@types/node": "^25.9.1",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.57.0",
"prettier": "^3.2.0",
"rimraf": "^5.0.0",
"typescript": "^5.4.0",
"vitest": "^1.6.0"
}
}