-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.89 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@microsoft/just-repo",
"version": "0.0.0",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/just"
},
"engines": {
"node": ">=22.18.0 || >=24"
},
"workspaces": {
"packages": [
"packages/*",
"scripts"
]
},
"scripts": {
"api": "lage api",
"api:update": "lage api:update",
"build": "lage build",
"change": "beachball change",
"checkchange": "beachball check",
"ci:local": "lage build test lint api:update",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "yarn syncpack:check && yarn lint:peers && yarn lint:code",
"lint:code": "lage lint",
"lint:peers": "node scripts/checkPeerDeps.mts",
"prepare": "husky",
"release": "beachball publish -y",
"release:canary": "beachball canary -y",
"syncpack:check": "syncpack lint",
"syncpack:update": "syncpack fix",
"start": "lage start",
"test": "lage test"
},
"lint-staged": {
"*": [
"prettier --write"
]
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@jest/globals": "catalog:dev",
"@microsoft/api-extractor": "catalog:dev",
"@types/fs-extra": "^11.0.0",
"@types/mock-fs": "^4.13.1",
"@types/node": "^22.0.0",
"beachball": "^2.65.5",
"eslint": "catalog:dev",
"eslint-config-prettier": "^10.0.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"jest": "catalog:dev",
"lage": "^2.15.12",
"lint-staged": "^17.0.7",
"prettier": "~3.9.0",
"syncpack": "^15.0.0",
"ts-jest": "^29.4.11",
"typescript": "catalog:dev",
"typescript-eslint": "^8.32.0"
},
"resolutions": {
"@types/chokidar/chokidar@*": "^3.0.0",
"@types/node@*": "^22.0.0"
},
"rationale": {
"resolutions": {
"@types/chokidar/chokidar@*": "pin to version matching other chokidar deps, not *"
}
}
}