-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.24 KB
/
package.json
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
{
"name": "@vue-termui/docs",
"type": "module",
"version": "0.0.6",
"description": "Interactive docs terminal for vue-termui.",
"author": "webfansplz",
"license": "MIT",
"homepage": "https://github.com/vue-terminal/docs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vue-terminal/docs.git"
},
"keywords": [
"vue",
"terminal",
"vue-termui"
],
"bin": {
"vtui-docs": "./cli.mjs"
},
"files": [
"dist/*.mjs"
],
"scripts": {
"dev": "vtui dev",
"build": "vtui build",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx,.md,.json --max-warnings 0 --cache",
"lint:fix": "pnpm run lint --fix"
},
"dependencies": {
"@vue-termui/syntax-highlight": "^1.0.2",
"@vue/compiler-sfc": "^3.2.41",
"@vue/runtime-core": "^3.2.41",
"vue": "^3.2.41",
"vue-router": "^4.1.6",
"vue-termui": "^0.0.19"
},
"devDependencies": {
"@antfu/eslint-config": "^0.33.0",
"@types/node": "^18.11.9",
"@vitejs/plugin-vue": "^3.2.0",
"@vue-termui/cli": "^0.0.17",
"eslint": "^8.28.0",
"typescript": "^4.8.4",
"unplugin-auto-import": "^0.11.4",
"unplugin-vue-components": "^0.22.9",
"vite": "^3.2.2",
"vite-plugin-vue-termui": "0.0.12"
}
}