forked from marko-js/language-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.36 KB
/
package.json
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
{
"name": "marko-language-server-repo",
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@commitlint/config-lerna-scopes": "^12.1.1",
"@types/node": "^15.0.2",
"@types/prettier": "^2.4.1",
"@types/vscode": "^1.58.1",
"husky": "^6.0.0",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"ovsx": "^0.1.0",
"prettier": "^2.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.4",
"vsce": "^2.4.0"
},
"private": true,
"scripts": {
"build:vscode": "tsc -b ./server ./clients/vscode",
"build:monaco": "tsc -b ./server-ws ./clients/monaco",
"build:all": "tsc -b ./server ./server-ws ./clients/vscode ./clients/monaco",
"format": "prettier \"**/*.{ts,js,json,md}\" --write",
"lint": "tsc -p ./server --noEmit && tsc -p ./server-ws --noEmit && tsc -p ./clients/vscode --noEmit tsc -p ./clients/monaco --noEmit && tslint -t codeFrame -c tslint.json '{server,server-ws,clients/*}/src/**/*.ts'",
"postpublish": "mkdir -p dist; export OUT=$PWD/dist/marko.vsix; (cd ./clients/vscode && npm i && vsce package -o $OUT && vsce publish --packagePath $OUT && ovsx publish $OUT -p $OVSX_PAT)",
"publish": "yarn build && lerna publish",
"watch": "yarn build -w"
},
"workspaces": [
"server",
"server-ws",
"clients/*"
]
}