-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
49 lines (49 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@vuedx/typecheck",
"version": "0.7.6",
"description": "TypeScript plugin for Vue",
"main": "lib/index.cjs",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"files": [
"lib",
"bin"
],
"bin": {
"vuedx-typecheck": "bin/typecheck.js"
},
"buildConfig": {
"external": [
"typescript",
"typescript/lib/tsserverlibrary"
]
},
"keywords": [],
"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/shared": "workspace:*",
"@vuedx/typescript-plugin-vue": "workspace:*",
"@vuedx/vue-virtual-textdocument": "workspace:*",
"chalk": "^4.1.0",
"fast-glob": "^3.2.4",
"minimist": "^1.2.5",
"resolve-from": "^5.0.0",
"typescript": "^4.8.2"
},
"devDependencies": {
"@types/minimist": "^1.2.2"
}
}