-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
36 lines (36 loc) · 1.18 KB
/
package.json
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
{
"name": "aaz-dev-tools",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"run-all": "pnpm -r --filter=\"!./src/typespec/core/\" ",
"build:typespec": "pnpm -r --filter=\"!./src/web/\" --filter=\"!./src/typespec/core/\" --workspace-concurrency=Infinity --aggregate-output --reporter=append-only build ",
"build:web": "pnpm -r --filter=\"./src/web/\" --workspace-concurrency=Infinity --aggregate-output --reporter=append-only build ",
"bundle": "node ./eng/scripts/bundle_dists.js",
"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.4.0",
"rimraf": "~5.0.5"
},
"syncpack": {
"dependencyTypes": [
"dev",
"overrides",
"peer",
"pnpmOverrides",
"prod",
"resolutions"
]
},
"dependencies": {
"picocolors": "~1.0.0"
}
}