Files
tools/docs/package.json
T
robonen f40cc55497 ci: run build, lint and test in parallel per package
Replace the single monorepo CI job with a dynamic matrix: a discover job enumerates workspace packages, then one job per package builds it (with its workspace deps), lints and tests in parallel (fail-fast: false). Chromium is installed only for the browser-mode suites (primitives, editor). Adds a 'test' script to @robonen/docs so its suite runs under the per-package model (the root vitest projects list isn't used by CI anymore).
2026-06-08 16:50:34 +07:00

38 lines
942 B
JSON

{
"name": "@robonen/docs",
"version": "0.0.1",
"private": true,
"license": "Apache-2.0",
"description": "Auto-generated documentation site for @robonen/tools",
"type": "module",
"scripts": {
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"dev": "nuxt dev",
"build": "nuxt build",
"generate": "nuxt generate",
"preview": "nuxt preview",
"extract": "jiti ./modules/extractor/extract.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"marked": "^18.0.5",
"shiki": "^4.0.1",
"zod": "^4.1.13"
},
"devDependencies": {
"@nuxt/fonts": "^0.14.0",
"@nuxt/kit": "^4.3.1",
"@robonen/eslint": "workspace:*",
"@tailwindcss/vite": "^4.2.1",
"eslint": "catalog:",
"jiti": "^2.6.1",
"nuxt": "catalog:",
"tailwindcss": "^4.2.1",
"ts-morph": "^27.0.2",
"vue": "catalog:",
"vue-router": "^5.0.3"
}
}