-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.04 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
{
"name": "@azure/typescript-generators-mono-repo",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "turbo build",
"build:test": "turbo run build:test",
"clean": "turbo run clean",
"check-format": "turbo run check-format",
"format": "turbo run format",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"preinstall": "npx only-allow pnpm",
"purge": "rimraf --glob \"packages/**/node_modules/\"",
"test": "turbo run test",
"update-typespec": "node .scripts/update-typespec-overrides.js"
},
"devDependencies": {
"@types/node": "^18.0.0",
"eslint": "^9.26.0",
"prettier": "^3.5.3",
"prettier-plugin-packagejson": "^2.5.15",
"rimraf": "^5.0.10",
"turbo": "^2.5.4",
"typescript": "~5.8.2"
},
"packageManager": "pnpm@10.12.1",
"engines": {
"node": ">=18",
"pnpm": ">=10.12.1"
},
"pnpm": {
"overrides": {},
"ignoredBuiltDependencies": [
"esbuild"
],
"onlyBuiltDependencies": [
"autorest",
"puppeteer"
]
}
}