forked from chaterm/Chaterm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.04 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.04 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
{
"name": "Chaterm",
"version": "0.0.2",
"description": "A terminal tool with AI Agent, makes you no need to learn complicated regular expressions, Perl and Python, switches and Linux commands, SQL syntax can easily manage thousands of devices!",
"main": "./out/main/index.js",
"author": "example.com",
"homepage": "Welcome to Chaterm",
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts,.vue --fix",
"lint:staged": "lint-staged",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "vue-tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "npm run build && electron-builder --mac",
"build:linux": "npm run build && electron-builder --linux",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,.cjs,mjs,ts,tsx,cts,mts,vue}": [
"prettier --write ",
"eslint --fix"
]
},
"dependencies": {
"@ant-design/icons-vue": "^7.0.1",
"@electron-toolkit/preload": "^3.0.0",
"@electron-toolkit/utils": "^3.0.0",
"@types/ssh2": "^1.15.5",
"axios": "^1.8.4",
"better-sqlite3": "^11.9.1",
"crypto-js": "^4.2.0",
"dotenv": "^16.5.0",
"monaco-editor": "^0.52.2",
"pinia": "^3.0.1",
"pinia-plugin-persistedstate": "^4.2.0",
"splitpanes": "^4.0.3",
"ssh2": "^1.16.0",
"v-contextmenu": "^3.2.0",
"vue-i18n": "^9.14.3",
"vuedraggable": "^4.1.0",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"xterm-addon-web-links": "^0.9.0"
},
"devDependencies": {
"@electron-toolkit/eslint-config": "^1.0.2",
"@electron-toolkit/eslint-config-ts": "^1.0.1",
"@electron-toolkit/tsconfig": "^1.0.1",
"@rushstack/eslint-patch": "^1.7.1",
"@types/js-cookie": "^3.0.6",
"@types/marked": "^6.0.0",
"@types/node": "^18.19.9",
"@types/uuid": "^10.0.0",
"@types/vue": "^2.0.0",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/compiler-sfc": "^3.5.13",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"ant-design-vue": "^4.2.6",
"electron": "^28.3.3",
"electron-builder": "^24.9.1",
"electron-rebuild": "^3.2.9",
"electron-vite": "^2.0.0",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.20.1",
"highlight.js": "^11.11.1",
"husky": "^9.1.7",
"js-cookie": "^3.0.5",
"less": "^4.2.2",
"lint-staged": "^15.5.2",
"marked": "^15.0.7",
"prettier": "^3.2.4",
"typescript": "^5.3.3",
"unplugin-auto-import": "^19.1.1",
"unplugin-vue-components": "^28.4.1",
"uuid": "^11.1.0",
"vite": "^5.0.12",
"vue": "^3.4.15",
"vue-router": "^4.5.0",
"vue-tsc": "^2.2.8"
}
}