forked from vuejs/language-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 1.19 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
{
"private": true,
"scripts": {
"build": "tsc -b tsconfig.build.json",
"watch": "npm run build && (npm run watch:base & npm run watch:vue-language-features & npm run watch:typescript-vue-plugin)",
"watch:base": "tsc -b tsconfig.build.json -w",
"watch:vue-language-features": "cd extensions/vscode-vue-language-features && npm run watch",
"watch:typescript-vue-plugin": "cd extensions/vscode-typescript-vue-plugin && npm run watch",
"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",
"test": "jest",
"chrome": "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"
}
}