-
-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.23 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.23 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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@vitejs/devtools",
"type": "module",
"version": "0.1.12",
"description": "Vite DevTools",
"author": "VoidZero Inc.",
"license": "MIT",
"homepage": "https://github.com/vitejs/devtools#readme",
"repository": {
"directory": "packages/core",
"type": "git",
"url": "git+https://github.com/vitejs/devtools.git"
},
"bugs": "https://github.com/vitejs/devtools/issues",
"keywords": [
"vite",
"vite-plugin",
"devtools",
"rpc"
],
"sideEffects": false,
"exports": {
".": "./dist/index.js",
"./cli": "./dist/cli.js",
"./cli-commands": "./dist/cli-commands.js",
"./client/inject": "./dist/client/inject.js",
"./client/webcomponents": "./dist/client/webcomponents.js",
"./config": "./dist/config.js",
"./dirs": "./dist/dirs.js",
"./internal": "./dist/internal.js",
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"bin": {
"vite-devtools": "./bin.js"
},
"files": [
"bin.js",
"dist"
],
"scripts": {
"build": "pnpm build:js && pnpm build:standalone",
"build:js": "tsdown --config-loader=tsx",
"build:standalone": "cd src/client/standalone && vite build",
"watch": "tsdown --watch --config-loader=tsx",
"dev:standalone": "cd src/client/standalone && vite dev",
"prepack": "pnpm build",
"play": "DEBUG='vite:devtools:*' pnpm -C playground run dev",
"play:debug": "pnpm -C playground run dev:debug",
"play:standalone": "DEBUG='vite:devtools:*' pnpm -C playground run dev:standalone",
"cli": "DEBUG='vite:devtools:*' tsx src/node/cli.ts",
"play:build": "pnpm -C playground run build"
},
"peerDependencies": {
"vite": "*"
},
"dependencies": {
"@vitejs/devtools-kit": "workspace:*",
"@vitejs/devtools-rolldown": "workspace:*",
"@vitejs/devtools-rpc": "workspace:*",
"birpc": "catalog:deps",
"cac": "catalog:deps",
"h3": "catalog:deps",
"immer": "catalog:inlined",
"launch-editor": "catalog:deps",
"mlly": "catalog:deps",
"obug": "catalog:deps",
"open": "catalog:deps",
"pathe": "catalog:deps",
"perfect-debounce": "catalog:deps",
"sirv": "catalog:deps",
"tinyexec": "catalog:deps",
"vue": "catalog:deps",
"ws": "catalog:deps"
},
"devDependencies": {
"@clack/prompts": "catalog:inlined",
"@vitejs/devtools-rolldown": "workspace:*",
"@vitejs/plugin-vue": "catalog:build",
"@xterm/addon-fit": "catalog:frontend",
"@xterm/xterm": "catalog:frontend",
"dompurify": "catalog:frontend",
"fuse.js": "catalog:frontend",
"human-id": "catalog:inlined",
"tsdown": "catalog:build",
"typescript": "catalog:devtools",
"unplugin-vue": "catalog:build",
"vite": "catalog:build",
"vue": "catalog:deps",
"vue-router": "catalog:playground",
"vue-tsc": "catalog:devtools"
},
"inlinedDependencies": {
"@clack/core": "1.1.0",
"@clack/prompts": "1.1.0",
"@json-render/core": "0.13.0",
"@json-render/vue": "0.13.0",
"@vueuse/core": "14.2.1",
"@vueuse/shared": "14.2.1",
"@xterm/addon-fit": "0.11.0",
"@xterm/xterm": "6.0.0",
"ansis": "4.2.0",
"dompurify": "3.3.3",
"fuse.js": "7.1.0",
"get-port-please": "3.2.0",
"sisteransi": "1.0.5",
"zod": "4.3.6"
}
}