forked from Azure/azure-sdk-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.12 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.12 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/monorepo",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "turbo build",
"build:test": "turbo run build:test",
"build:samples": "turbo run build:samples",
"clean": "turbo run clean",
"check-format": "turbo run check-format",
"cspell": "cspell --no-progress .",
"format": "turbo run format",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"preinstall": "npx only-allow pnpm",
"purge": "rimraf --glob \"sdk/**/node_modules/\"",
"test": "turbo run test",
"test:node": "turbo run test:node",
"test:browser": "turbo run test:browser",
"test:esm": "turbo run test:esm",
"test:vitest": "vitest",
"typecheck": "turbo run typecheck",
"update-snippets": "turbo run update-snippets"
},
"devDependencies": {
"cspell": "^8.19.4",
"prettier": "^3.6.2",
"prettier-plugin-packagejson": "^2.5.19",
"rimraf": "^5.0.10",
"turbo": "^2.5.5"
},
"packageManager": "pnpm@10.12.1",
"engines": {
"node": ">=20",
"pnpm": ">=10.12.1"
},
"pnpm": {
"overrides": {
"typescript": "~5.8.2"
}
}
}