This repository was archived by the owner on Mar 24, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.53 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.53 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
{
"name": "@ws-tools/monorepo",
"private": true,
"version": "0.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/workspace-tools"
},
"workspaces": [
"packages/*",
"scripts",
"!scripts/jest/__fixtures__/*"
],
"scripts": {
"api": "yarn lage api",
"build": "yarn lage build api",
"build:docs": "cd packages/workspace-tools && typedoc --out ../../docs src/index.ts",
"change": "beachball change",
"checkchange": "beachball check",
"format": "prettier --write .",
"format:check": "prettier --check .",
"release": "beachball publish -y",
"test": "yarn lage test"
},
"devDependencies": {
"@microsoft/api-extractor": "7.52.9",
"@types/fs-extra": "^11.0.0",
"@types/git-url-parse": "^16.0.0",
"@types/jest": "^29.5.1",
"@types/jju": "^1.4.2",
"@types/js-yaml": "^4.0.5",
"@types/micromatch": "^4.0.2",
"@types/node": "^16.0.0",
"@types/tmp": "^0.2.3",
"@types/yarnpkg__lockfile": "^1.1.5",
"beachball": "^2.63.0",
"cross-env": "^7.0.3",
"fs-extra": "^11.0.0",
"jest": "^29.5.0",
"lage": "^2.6.2",
"prettier": "^3.0.0",
"tmp": "^0.2.1",
"ts-dedent": "^2.2.0",
"ts-jest": "^29.1.0",
"typedoc": "^0.25.2",
"typescript": "~5.2.2"
},
"resolutions": {
"**/beachball/workspace-tools": "0.40.2"
},
"rationale": {
"resolutions": {
"**/beachball/workspace-tools": "Explicitly install an older version to avoid issues with local breaking changes"
}
}
}