-
-
Notifications
You must be signed in to change notification settings - Fork 242
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.13 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.13 KB
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": "@vue/devtools-applet",
"type": "module",
"version": "8.0.5",
"author": "webfansplz",
"license": "MIT",
"repository": {
"directory": "packages/applet",
"type": "git",
"url": "git+https://github.com/vuejs/devtools.git"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./style.css": "./dist/index.css"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"stub": "vite build --watch"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"dependencies": {
"@vue/devtools-core": "workspace:^",
"@vue/devtools-kit": "workspace:^",
"@vue/devtools-shared": "workspace:^",
"@vue/devtools-ui": "workspace:^",
"lodash-es": "^4.17.22",
"perfect-debounce": "catalog:",
"shiki": "catalog:",
"splitpanes": "catalog:",
"vue-virtual-scroller": "catalog:"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"unplugin-vue": "^7.1.0",
"vite-plugin-dts": "catalog:",
"vue": "catalog:",
"vue-router": "catalog:"
}
}