-
Notifications
You must be signed in to change notification settings - Fork 354
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 3.32 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 3.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@typespec/monorepo",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@10.30.2",
"type": "module",
"scripts": {
"build": "pnpm build:all && pnpm check:eng && pnpm gen-compiler-extern-signature",
"build:all": "pnpm -r --workspace-concurrency=Infinity build",
"check:eng": "tsc -p ./tsconfig.eng.json --noEmit",
"setup:min": "pnpm install && pnpm --filter \"@typespec/prettier-plugin-typespec...\" --filter \"@typespec/tspd...\" run build",
"check-catalog": "tsx eng/common/scripts/check-catalog.ts",
"change": "chronus",
"clean": "pnpm -r run clean",
"cspell": "cspell --no-progress .",
"dogfood": "pnpm install && pnpm build && pnpm -r dogfood",
"format": "prettier . --write",
"format:check": "prettier . --check",
"format:dir": "prettier --write",
"gen-compiler-extern-signature": "pnpm run -r --filter \"@typespec/compiler\" gen-extern-signature",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"merge-coverage": "c8 -- report --reporter=cobertura --reporter=text",
"pack:all": "chronus pack --exclude standalone --pack-destination ./temp/artifacts",
"preinstall": "npx only-allow pnpm",
"prepare-publish": "pnpm chronus version",
"purge": "rimraf --glob \"packages/*/node_modules/\"",
"regen-docs": "pnpm -r --parallel --aggregate-output --reporter=append-only run regen-docs",
"regen-samples": "pnpm -r run regen-samples",
"test": "vitest run",
"test:ci": "vitest run --coverage --reporter=junit --reporter=default",
"test:e2e": "pnpm -r run test:e2e",
"update-playground-versions": "pnpm -r run update-playground-versions",
"watch": "tsc --build ./tsconfig.ws.json --watch",
"sync-labels": "tsx ./eng/common/scripts/labels/sync-labels.ts --config ./eng/common/config/labels.ts",
"validate-scenarios": "pnpm -r --filter=@typespec/http-specs run validate-scenarios",
"validate-mock-apis": "pnpm -r --filter=@typespec/http-specs run validate-mock-apis",
"generate-scenarios-summary": "pnpm -r --filter=@typespec/http-specs run generate-scenarios-summary",
"install-conflict": "git checkout upstream/main -- pnpm-lock.yaml && pnpm install",
"tsp-integration": "node packages/tsp-integration/cmd/tsp-integration.js"
},
"devDependencies": {
"@chronus/chronus": "catalog:",
"@chronus/github": "catalog:",
"@chronus/github-pr-commenter": "catalog:",
"@eslint/js": "catalog:",
"@microsoft/api-extractor": "catalog:",
"@octokit/core": "catalog:",
"@octokit/plugin-paginate-graphql": "catalog:",
"@octokit/plugin-rest-endpoint-methods": "catalog:",
"@types/micromatch": "catalog:",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"@vitest/eslint-plugin": "catalog:",
"c8": "catalog:",
"cspell": "catalog:",
"eslint": "catalog:",
"eslint-plugin-react-hooks": "catalog:",
"eslint-plugin-unicorn": "catalog:",
"micromatch": "catalog:",
"picocolors": "catalog:",
"playwright": "catalog:",
"prettier": "catalog:",
"prettier-plugin-astro": "catalog:",
"prettier-plugin-organize-imports": "catalog:",
"prettier-plugin-sh": "catalog:",
"rimraf": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:",
"vitest": "catalog:",
"yaml": "catalog:"
}
}