-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.56 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
{
"name": "@vue-termui/devtools",
"private": false,
"publishConfig": {
"access": "public"
},
"type": "module",
"version": "0.0.1",
"scripts": {
"stub": "unbuild --stub",
"build": "tsup",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path . -l @vue-termui/devtools -r 1"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./*": "./*"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"vtui-devtools": "./node_modules/.bin/vue-devtools"
},
"files": [
"dist/**/*.js",
"dist/**/*.mjs",
"dist/**/*.cjs",
"dist/**/*.d.ts",
"vtui.mjs"
],
"keywords": [
"devtools",
"@vue/devtools"
],
"funding": "https://github.com/vue-terminal/vue-termui?sponsor=1",
"license": "MIT",
"author": "webfansplz",
"repository": {
"type": "git",
"url": "https://github.com/vue-terminal/vue-termui.git",
"directory": "packages/devtools"
},
"engines": {
"node": ">=14.0.0"
},
"bugs": {
"url": "https://github.com/vue-terminal/vue-termui/issues"
},
"homepage": "https://github.com/vue-terminal/vue-termui#readme",
"dependencies": {
"@vue/devtools": "^6.4.5",
"express": "^4.18.2",
"launch-editor-middleware": "^2.6.0"
},
"unbuild": {
"entries": [
"src/index"
],
"rollup": {
"emitCJS": true
},
"clean": true
},
"devDependencies": {
"@types/express": "^4.17.14"
}
}