-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.68 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
{
"name": "aaz-dev-tools",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.30.2",
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"scripts": {
"run-all": "pnpm -r --filter=\"!./src/typespec/core/\" ",
"build:typespec": "pnpm install -C src/typespec/ && pnpm -C src/typespec -r --filter=\"!@typespec/monorepo\" --filter=\"!@azure-tools/typespec-azure-monorepo\" --filter=\"!@typespec/typespec-vs\" --filter=\"!@typespec/website\" --filter=\"!@azure-tools/typespec-azure-website\" --filter=\"!...@typespec/emitter-framework\" --workspace-concurrency=Infinity --aggregate-output --reporter=append-only build && pnpm -C src/typespec-aaz build",
"build:web": "pnpm -r --filter=\"./src/web/\" --workspace-concurrency=Infinity --aggregate-output --reporter=append-only build ",
"bundle": "node ./eng/scripts/bundle_dists.js",
"test-aaz-emitter": "cd ./src/typespec-aaz && pnpm test-aaz",
"clean": "pnpm run-all run clean",
"lint": "pnpm run-all --parallel --aggregate-output --reporter=append-only run lint",
"preinstall": "npx only-allow pnpm",
"purge": "rimraf --glob \"src/**/node_modules/\"",
"watch": "tsc --build ./tsconfig.ws.json --watch"
},
"devDependencies": {
"@pnpm/find-workspace-packages": "^6.0.9",
"@pnpm/logger": "^5.0.0",
"@azure-tools/typespec-liftr-base": "^0.8.0",
"rimraf": "~5.0.5"
},
"syncpack": {
"dependencyTypes": [
"dev",
"overrides",
"peer",
"pnpmOverrides",
"prod",
"resolutions"
]
},
"dependencies": {
"picocolors": "~1.0.0"
},
"pnpm": {
"overrides": {
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22"
}
}
}