-
-
Notifications
You must be signed in to change notification settings - Fork 249
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.14 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.14 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
{
"name": "@vue/devtools-electron",
"type": "module",
"version": "8.1.1",
"author": "webfansplz",
"license": "MIT",
"repository": {
"directory": "packages/electron",
"type": "git",
"url": "git+https://github.com/vuejs/devtools.git"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./*": "./*",
"./cli": {
"import": "./dist/cli.mjs",
"require": "./dist/cli.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"files": [
"app.html",
"cli.d.ts",
"client",
"dist",
"icons"
],
"scripts": {
"build": "tsx scripts/build.ts",
"dev": "tsx scripts/build.ts --watch",
"prepare:type": "tsup src/index.ts --dts-only --format cjs,esm",
"stub": "pnpm dev"
},
"dependencies": {
"@vue/devtools-core": "workspace:^",
"@vue/devtools-kit": "workspace:^",
"@vue/devtools-shared": "workspace:^",
"electron": "^36.9.4",
"h3": "^1.15.4",
"pathe": "catalog:",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1"
},
"devDependencies": {
"tsx": "^4.20.6",
"unbuild": "3.6.1"
}
}