-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
93 lines (93 loc) · 2.24 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@vuedx/typescript-plugin-vue",
"version": "0.7.6",
"description": "TypeScript plugin for Vue",
"main": "index.js",
"module": "lib/standalone.mjs",
"types": "lib/index.d.ts",
"files": [
"lib",
"runtime"
],
"buildConfig": {
"useMain": false,
"sources": {
"src/index.ts": [
{
"format": "module",
"file": "lib/standalone.cjs",
"bundle": {
"platform": "node",
"format": "cjs",
"external": [
"typescript",
"typescript/lib/tsserverlibrary"
]
}
},
{
"format": "module",
"file": "lib/standalone.mjs",
"bundle": {
"platform": "node",
"format": "esm",
"external": [
"typescript",
"typescript/lib/tsserverlibrary"
]
}
}
],
"types/3.x.d.ts": [
{
"format": "dts",
"file": "runtime/3.x.vuedx_runtime.d.ts"
}
]
},
"external": [
"typescript",
"typescript/lib/tsserverlibrary"
]
},
"private": false,
"keywords": [
"vue",
"vue-plugin",
"typescript",
"typescript-plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/znck/vue-developer-experience.git"
},
"author": "Rahul Kadyan <[email protected]> (https://znck.me/)",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/znck"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/znck/vue-developer-experience/issues"
},
"homepage": "https://github.com/znck/vue-developer-experience#readme",
"dependencies": {
"@vuedx/projectconfig": "workspace:*",
"@vuedx/shared": "workspace:*",
"@vuedx/template-ast-types": "workspace:*",
"@vuedx/vue-virtual-textdocument": "workspace:*",
"inversify": "^5.1.1",
"json5": "^2.2.0",
"node-ipc": "10.1.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"csstype": "^3.1.0",
"@vuedx/compiler-tsx": "workspace:*",
"@types/web": "^0.0.56",
"@vue/runtime-core": "^3.2.39",
"quick-lru": "^6.0.1",
"vscode-languageserver-types": "^3.16.0",
"vue": "^0.12.2"
}
}