forked from vue-vine/vue-vine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.48 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
50
51
52
53
54
55
56
57
58
{
"name": "@vue-vine/language-server",
"version": "0.1.41",
"author": "Ray <[email protected]> (@so1ve)",
"license": "MIT",
"homepage": "https://github.com/vue-vine/vue-vine#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vue-vine/vue-vine.git"
},
"bugs": {
"url": "https://github.com/vue-vine/vue-vine/issues"
},
"sideEffects": false,
"main": "./dist/index.js",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"bin": {
"vue-vine-language-server": "./bin/vue-vine-language-server.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "NODE_ENV=development tsup --watch",
"build": "NODE_ENV=production tsup",
"prepublish": "pnpm run build"
},
"dependencies": {
"@volar/language-server": "~2.4.8",
"@volar/language-service": "~2.4.8",
"@vue-vine/compiler": "workspace:*",
"@vue-vine/language-service": "workspace:*",
"@vue/language-core": "~2.1.10",
"@vue/language-service": "~2.1.10",
"volar-service-css": "0.0.62",
"volar-service-emmet": "0.0.62",
"volar-service-html": "0.0.62",
"volar-service-typescript": "0.0.62",
"vscode-languageserver-protocol": "^3.17.5",
"vscode-languageserver-textdocument": "^1.0.12"
},
"devDependencies": {
"@types/node": "^20.11.25",
"@vue/shared": "^3.5.0",
"vscode-html-languageservice": "^5.3.0",
"vscode-uri": "^3.0.8"
}
}