-
-
Notifications
You must be signed in to change notification settings - Fork 249
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.63 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.63 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@vue/devtools-ui",
"type": "module",
"version": "8.0.8",
"author": "webfansplz",
"license": "MIT",
"repository": {
"directory": "packages/ui",
"type": "git",
"url": "git+https://github.com/vuejs/devtools.git"
},
"exports": {
".": {
"types": "./dist/types/src/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./style.css": "./dist/style.css",
"./uno.css": "./dist/uno.css",
"./theme": {
"types": "./dist/types/theme/index.d.ts",
"import": "./dist/theme.js",
"require": "./dist/theme.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/types/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsx ./scripts/update-icons.ts && vite build",
"story:build": "histoire build",
"story:dev": "histoire dev",
"story:preview": "histoire preview"
},
"peerDependencies": {
"@unocss/reset": ">=0.50.0-0",
"floating-vue": ">=2.0.0-0",
"shiki": ">=1.16.0",
"unocss": ">=0.50.0-0",
"vue": ">=3.0.0-0"
},
"dependencies": {
"@vue/devtools-shared": "workspace:*",
"@vueuse/components": "^13.9.0",
"@vueuse/core": "catalog:",
"@vueuse/integrations": "catalog:",
"colord": "catalog:",
"focus-trap": "^7.8.0"
},
"devDependencies": {
"@histoire/plugin-vue": "^0.17.17",
"@iconify-json/ic": "^1.2.4",
"@types/node": "catalog:",
"@unocss/reset": "catalog:",
"@vitejs/plugin-vue": "catalog:",
"floating-vue": "catalog:",
"histoire": "^0.17.17",
"unocss": "catalog:",
"vite-plugin-dts": "catalog:"
}
}