This repository has been archived by the owner on Mar 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
92 lines (92 loc) · 2.7 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
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
{
"name": "bartender",
"version": "0.1.1",
"private": true,
"description": "",
"scripts": {
"dev:docs": "node scripts/dev.docs.js",
"dev": "node scripts/dev.js",
"build": "node scripts/build.js",
"build:docs": "vitepress build docs",
"build:dir": "cross-env BUILD_TARGET=dir node scripts/build.js",
"build:lite": "cross-env BUILD_TARGET=lite node scripts/build.js",
"build:production": "cross-env BUILD_TARGET=production node scripts/build.js",
"lint": "eslint --ext .ts,.vue,.js src scripts",
"lint:fix": "npm run lint -- --fix"
},
"author": {
"email": "[email protected]",
"name": "Carlos"
},
"license": "MIT",
"dependencies": {
"@codemirror/basic-setup": "^0.17.1",
"@codemirror/lang-json": "^0.17.1",
"@codemirror/theme-one-dark": "^0.17.2",
"electron-store": "^6.0.1",
"electron-updater": "^4.3.5",
"element-plus": "^1.0.1-beta.24",
"ioredis": "^4.19.4",
"monaco-editor": "^0.21.2",
"splitpanes": "^3.0.4",
"uuid": "^8.3.2",
"vue": "^3.0.5",
"vue-router": "^4.0.3",
"vue3-perfect-scrollbar": "^1.5.5",
"vuex": "^4.0.0-rc.2",
"xterm": "^4.9.0",
"xterm-addon-attach": "^0.6.0",
"xterm-addon-fit": "^0.4.0",
"xterm-addon-web-links": "^0.4.0"
},
"external": [
"electron-updater",
"electron-store",
"ioredis",
"uuid"
],
"devDependencies": {
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^6.1.0",
"@types/ioredis": "^4.17.11",
"@types/node": "^14.14.20",
"@types/splitpanes": "^2.2.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@vue/babel-plugin-jsx": "^1.0.1",
"@vue/compiler-sfc": "^3.0.5",
"builtin-modules": "^3.2.0",
"chalk": "^4.1.0",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"electron": "^10.2.0",
"electron-builder": "^22.9.1",
"esbuild": "^0.6.33",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.4.0",
"fs-extra": "^9.0.1",
"prettier": "^2.2.1",
"rollup": "^2.36.1",
"sass": "^1.32.4",
"sass-loader": "^10.1.1",
"tslib": "^1.14.1",
"typescript": "^4.1.3",
"vite": "^1.0.0-rc.13"
},
"optionalDependencies": {
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.2",
"eslint-plugin-vue": "^7.1.0",
"vitepress": "^0.7.4"
}
}