-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 3.22 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 3.22 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
75
76
77
{
"name": "@azure-tools/typespec-azure-monorepo",
"version": "0.0.1",
"private": true,
"type": "module",
"packageManager": "pnpm@10.30.2",
"scripts": {
"run-all": "turbo --filter=!@typespec/monorepo",
"run-azure-only": "turbo --filter=!{./core/**}",
"build": "pnpm run-all build && pnpm check:eng",
"deps": "tsx eng/scripts/sync-deps.ts",
"check:eng": "tsc -p ./tsconfig.eng.json --noEmit",
"change": "chronus",
"clean": "pnpm run-all clean",
"cspell": "cspell --no-progress .",
"dogfood": "pnpm install && pnpm build && pnpm run-all dogfood",
"format": "prettier --write .",
"format:check": "prettier . --check",
"format:dir": "prettier --write",
"format:extra": "pnpm run-all format:extra",
"format:extra:check": "pnpm run-all format:extra:check",
"lint": "eslint . --max-warnings=0",
"lint:extra": "pnpm run-all lint:extra",
"lint:fix": "eslint . --fix",
"pack:all": "chronus pack --pack-destination ./temp/artifacts",
"preinstall": "npx only-allow pnpm",
"prepare-publish": "node ./eng/scripts/prepare-publish.js",
"purge": "rimraf --glob \"packages/*/node_modules/\" --glob \"core/packages/*/node_modules/\"",
"regen-docs": "pnpm run-all regen-docs",
"regen-samples": "pnpm run-all regen-samples",
"test": "vitest run --config ./vitest.config.fast.ts",
"test:ci": "vitest run --config ./vitest.config.fast.ts --coverage --reporter=junit --reporter=default",
"test:extra": "pnpm run-all test:extra",
"test:e2e": "pnpm run-azure-only test:e2e",
"update-playground-versions": "pnpm run-all update-playground-versions",
"watch": "tsc --build ./tsconfig.ws.json --watch",
"sync-labels": "tsx ./core/eng/common/scripts/labels/sync-labels.ts --config ./eng/config/labels.ts",
"validate-scenarios": "pnpm -r --filter=@azure-tools/azure-http-specs run validate-scenarios",
"validate-mock-apis": "pnpm -r --filter=@azure-tools/azure-http-specs run validate-mock-apis",
"generate-scenarios-summary": "pnpm -r --filter=@azure-tools/azure-http-specs run generate-scenarios-summary",
"upload-manifest": "pnpm -r --filter=@azure-tools/azure-http-specs run upload-manifest",
"install-conflict": "git checkout upstream/main -- pnpm-lock.yaml && pnpm install",
"tsp-integration": "node core/packages/tsp-integration/cmd/tsp-integration.js"
},
"devDependencies": {
"@chronus/chronus": "catalog:",
"@chronus/github": "catalog:",
"@eslint/js": "catalog:",
"@pnpm/workspace.find-packages": "catalog:",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"@vitest/eslint-plugin": "catalog:",
"cspell": "catalog:",
"eslint": "catalog:",
"eslint-plugin-import": "catalog:",
"eslint-plugin-unicorn": "catalog:",
"playwright": "catalog:",
"prettier": "catalog:",
"prettier-plugin-astro": "catalog:",
"prettier-plugin-organize-imports": "catalog:",
"prettier-plugin-sh": "catalog:",
"rimraf": "catalog:",
"tsx": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:",
"vitest": "catalog:"
},
"dependencies": {
"picocolors": "catalog:"
},
"pnpm": {
"onlyBuiltDependencies": [
"tree-sitter"
]
}
}