-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.43 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.43 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
{
"private": true,
"packageManager": "pnpm@11.4.0",
"scripts": {
"build": "tsc -b",
"watch": "pnpm run \"/^watch:.*/\"",
"watch:base": "tsc -b -w",
"watch:vscode": "pnpm -F mpx-official run watch",
"test": "vitest",
"lint": "eslint --cache .",
"format": "prettier --write --cache .",
"clean": "rimraf -g .eslintcache \"**/*.tsbuildinfo\" && pnpm clean:out",
"clean:out": "rimraf -g \"packages/*/out\" \"vscode/out\" \"vscode/dist\"",
"version:patch": "pnpm build && lerna version patch --yes --force-publish",
"npm:publish": "lerna publish from-package --yes",
"postinstall": "simple-git-hooks && pnpm clean"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "npx tsx scripts/verify-commit.ts"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write --cache"
],
"*.ts": [
"eslint --fix --cache",
"prettier --parser=typescript --write --cache"
]
},
"engines": {
"node": ">=24"
},
"devDependencies": {
"@lerna-lite/cli": "^5.2.2",
"@lerna-lite/publish": "^5.2.2",
"@types/node": "catalog:",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"eslint": "^8.57.1",
"lint-staged": "^15.2.0",
"picocolors": "^1.1.1",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.9.0",
"tsx": "^4.19.3",
"typescript": "catalog:"
}
}