microsoft/typespec
Publicmirrored from https://github.com/microsoft/typespecAvailable
package.json
86lines · modecode
| 1 | { |
| 2 | "name": "@typespec/monorepo", |
| 3 | "version": "0.0.1", |
| 4 | "private": true, |
| 5 | "packageManager": "pnpm@9.5.0", |
| 6 | "type": "module", |
| 7 | "scripts": { |
| 8 | "build": "pnpm build:all && pnpm check:eng && pnpm gen-compiler-extern-signature", |
| 9 | "build:all": "pnpm -r --workspace-concurrency=Infinity --aggregate-output --reporter=append-only build", |
| 10 | "check:eng": "tsc -p ./tsconfig.eng.json --noEmit", |
| 11 | "setup:min": "pnpm install && pnpm --filter \"@typespec/prettier-plugin-typespec...\" run build", |
| 12 | "check-version-mismatch": "syncpack list-mismatches", |
| 13 | "change": "chronus", |
| 14 | "clean": "pnpm -r run clean", |
| 15 | "cspell": "cspell --no-progress .", |
| 16 | "dogfood": "pnpm install && pnpm build && pnpm -r dogfood", |
| 17 | "fix-version-mismatch": "syncpack fix-mismatches", |
| 18 | "format": "prettier . --write", |
| 19 | "format:check": "prettier . --check", |
| 20 | "format:dir": "prettier --write", |
| 21 | "gen-compiler-extern-signature": "pnpm run -r --filter \"@typespec/compiler\" gen-extern-signature", |
| 22 | "lint": "eslint . --max-warnings=0", |
| 23 | "lint:fix": "eslint . --fix", |
| 24 | "merge-coverage": "c8 -- report --reporter=cobertura --reporter=text", |
| 25 | "pack:all": "chronus pack --pack-destination ./temp/artifacts", |
| 26 | "preinstall": "npx only-allow pnpm", |
| 27 | "prepare-publish": "pnpm chronus version", |
| 28 | "purge": "rimraf --glob \"packages/*/node_modules/\"", |
| 29 | "regen-docs": "pnpm -r --parallel --aggregate-output --reporter=append-only run regen-docs", |
| 30 | "regen-samples": "pnpm -r run regen-samples", |
| 31 | "test": "vitest run", |
| 32 | "test:ci": "vitest run --coverage --reporter=junit --reporter=default", |
| 33 | "test:e2e": "pnpm -r run test:e2e", |
| 34 | "update-latest-docs": "pnpm -r run update-latest-docs", |
| 35 | "watch": "tsc --build ./tsconfig.ws.json --watch", |
| 36 | "sync-labels": "tsx ./eng/common/scripts/labels/sync-labels.ts --config ./eng/common/config/labels.ts" |
| 37 | }, |
| 38 | "devDependencies": { |
| 39 | "@chronus/chronus": "^0.13.0", |
| 40 | "@chronus/github": "^0.4.4", |
| 41 | "@eslint/js": "^9.12.0", |
| 42 | "@microsoft/api-extractor": "^7.47.9", |
| 43 | "@octokit/core": "^6.1.2", |
| 44 | "@octokit/plugin-paginate-graphql": "^5.2.3", |
| 45 | "@octokit/plugin-rest-endpoint-methods": "^13.2.6", |
| 46 | "@pnpm/find-workspace-packages": "^6.0.9", |
| 47 | "@types/micromatch": "^4.0.9", |
| 48 | "@types/node": "~22.7.5", |
| 49 | "@vitest/coverage-v8": "^2.1.2", |
| 50 | "c8": "^10.1.2", |
| 51 | "cspell": "^8.14.4", |
| 52 | "eslint": "^9.12.0", |
| 53 | "eslint-plugin-deprecation": "^3.0.0", |
| 54 | "eslint-plugin-import": "^2.31.0", |
| 55 | "eslint-plugin-react-hooks": "^5.1.0-rc-94e652d5-20240912", |
| 56 | "eslint-plugin-unicorn": "^56.0.0", |
| 57 | "eslint-plugin-vitest": "^0.5.4", |
| 58 | "micromatch": "^4.0.8", |
| 59 | "picocolors": "~1.1.0", |
| 60 | "prettier": "~3.3.3", |
| 61 | "prettier-plugin-astro": "^0.14.1", |
| 62 | "prettier-plugin-organize-imports": "~4.1.0", |
| 63 | "rimraf": "~6.0.1", |
| 64 | "syncpack": "^13.0.0", |
| 65 | "tsx": "^4.19.1", |
| 66 | "typescript": "~5.6.3", |
| 67 | "typescript-eslint": "^8.8.1", |
| 68 | "vitest": "^2.1.2", |
| 69 | "yaml": "~2.5.1" |
| 70 | }, |
| 71 | "syncpack": { |
| 72 | "dependencyTypes": [ |
| 73 | "dev", |
| 74 | "overrides", |
| 75 | "peer", |
| 76 | "pnpmOverrides", |
| 77 | "prod", |
| 78 | "resolutions" |
| 79 | ] |
| 80 | }, |
| 81 | "pnpm": { |
| 82 | "overrides": { |
| 83 | "@fluentui/react-theme": "9.1.17" |
| 84 | } |
| 85 | } |
| 86 | } |
| 87 | |