This repository has been archived by the owner on Nov 4, 2023. It is now read-only.
forked from vuejs/language-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.69 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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"scripts": {
"build": "tsc -b tsconfig.build.json",
"watch": "npm run build && npm run watch:base",
"watch:base": "tsc -b tsconfig.build.json -w",
"watch:vue-language-features": "cd extensions/vscode-vue-language-features && npm run watch",
"watch:alpine-language-features": "cd extensions/vscode-alpine-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",
"version:test": "lerna version --exact --force-publish --yes --sync-workspace-lock --no-push --no-git-tag-version",
"release": "lerna publish --exact --force-publish --yes --sync-workspace-lock",
"test": "vitest run",
"chrome": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=./extensions/vscode-vue-language-features ../volar-starter"
},
"devDependencies": {
"@lerna-lite/cli": "latest",
"@types/node": "latest",
"@vscode/test-web": "latest",
"typescript": "latest",
"vite": "latest",
"vitest": "latest",
"vscode-html-languageservice": "^5.0.0"
},
"name": "pugjs-language-service",
"version": "0.38.1-angular",
"main": "out/index.js",
"license": "MIT",
"files": [
"out/**/*.js",
"out/**/*.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/Pug-Angular-Editor-Tools/volar.git",
"directory": "src"
},
"dependencies": {
"@volar/code-gen": "0.38.1",
"@volar/shared": "0.38.1",
"@volar/source-map": "0.38.1",
"@volar/transforms": "0.38.1",
"pug-lexer": "^5.0.1",
"pug-parser": "^6.0.0",
"pug-runtime": "^3.0.1",
"void-elements": "^3.1.0",
"vscode-languageserver-textdocument": "^1.0.4",
"vscode-languageserver-types": "^3.17.1"
}
}