-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 638 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 638 Bytes
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
{
"name": "language-tools",
"private": "true",
"scripts": {
"watch": "cd ./packages/vscode && npm run watch",
"pack": "cd ./packages/vscode && npm run pack",
"publish": "cd ./packages/vscode && npm run publish",
"prepare": "husky",
"commitlint": "commitlint --edit"
},
"workspaces": [
"packages/language-server",
"packages/vscode"
],
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"prettier": "^3.2.5"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}