forked from vue-vine/vue-vine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.38 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
{
"name": "@vue-vine/language-server",
"version": "0.1.20",
"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": "tsup --watch",
"build": "tsup",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@volar/language-core": "~2.4.0-alpha.15",
"@volar/language-server": "~2.4.0-alpha.15",
"@volar/language-service": "~2.4.0-alpha.15",
"@vue-vine/compiler": "workspace:*",
"@vue-vine/language-service": "workspace:*",
"@vue/language-core": "~2.0.26",
"@vue/language-service": "~2.0.26",
"volar-service-css": "0.0.59",
"volar-service-emmet": "0.0.59",
"volar-service-html": "0.0.59",
"volar-service-typescript": "0.0.59",
"vscode-uri": "^3.0.8"
},
"devDependencies": {
"@types/node": "^20.11.25",
"vscode-html-languageservice": "^5.3.0"
}
}