forked from vuejs/language-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.26 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
{
"private": true,
"scripts": {
"install": "npm run install:vue-language-features && npm run install:typescript-vue-plugin",
"install:vue-language-features": "cd extensions/vscode-vue-language-features && yarn",
"install:typescript-vue-plugin": "cd extensions/vscode-typescript-vue-plugin && yarn",
"build": "tsc -b tsconfig.build.json",
"watch": "tsc -b tsconfig.build.json -w",
"prerelease": "npm run build && npm run test",
"release": "lerna publish --exact --force-publish --yes && npm run release:vue-language-features && npm run release:typescript-vue-plugin",
"release:vue-language-features": "cd extensions/vscode-vue-language-features && npm run release",
"release:typescript-vue-plugin": "cd extensions/vscode-typescript-vue-plugin && npm run release",
"pretest": "cd packages/vscode-vue-languageservice/testCases && yarn",
"test": "jest",
"chrome": "npm run build && vscode-test-web --browserType=chromium --extensionDevelopmentPath=./extensions/vscode-vue-language-features ../volar-starter"
},
"devDependencies": {
"@types/jest": "latest",
"@vscode/test-web": "latest",
"jest": "latest",
"lerna": "latest",
"ts-jest": "latest",
"typescript": "latest"
},
"resolutions": {
"to-vfile": "7.1.0"
},
"workspaces": [
"packages/*"
]
}