-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 2.88 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 2.88 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "ai-terminal",
"version": "3.61.3",
"description": "🚀 World's First AI-Powered Web Terminal - Seamlessly integrate Claude AI + Gemini AI with browser-based terminal. Zero installation, Docker-ready, enterprise-grade architecture for developers, researchers, and teams.",
"main": "connection-test.js",
"keywords": [
"ai-terminal",
"web-terminal",
"claude-ai",
"gemini-ai",
"browser-terminal",
"ai-powered-development",
"terminal-emulator",
"web-based-terminal",
"ai-assistant",
"developer-tools",
"open-source",
"docker-deployment",
"vue3-application",
"nodejs-backend",
"xterm-js",
"ai-integration",
"knowledge-cards",
"real-time-collaboration",
"enterprise-ai-tools",
"claude-code",
"claude-cli",
"gemini-cli",
"cli-to-api",
"websocket",
"socket-io",
"fluent-ui",
"responsive-design",
"cross-platform",
"zero-installation",
"one-click-deploy",
"production-ready",
"智能终端",
"ai工具",
"开发者工具"
],
"author": {
"name": "AI Terminal Team",
"email": "hello@ai-terminal.com",
"url": "https://aiterminal.dev"
},
"contributors": [
{
"name": "aixier",
"email": "aixier@github.com",
"url": "https://github.com/aixier"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/aixier/AI_Terminal.git"
},
"bugs": {
"url": "https://github.com/aixier/AI_Terminal/issues",
"email": "support@ai-terminal.com"
},
"homepage": "https://github.com/aixier/AI_Terminal#readme",
"funding": [
{
"type": "kofi",
"url": "https://ko-fi.com/aiterminal"
},
{
"type": "github",
"url": "https://github.com/sponsors/aixier"
}
],
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"test": "node connection-test.js",
"start": "cd terminal-backend && npm start",
"dev": "cd terminal-backend && npm run dev",
"build": "cd terminal-ui && npm run build",
"docker:build": "docker build -t coopotfan/ai-terminal:latest .",
"docker:run": "docker run -d -p 6000:6000 coopotfan/ai-terminal:latest",
"docker:dev": "docker-compose -f docker-compose.dev.yml up",
"lint": "eslint . --ext .js,.vue,.ts --fix",
"format": "prettier --write ."
},
"dependencies": {
"axios": "^1.6.2",
"chalk": "^4.1.2",
"eventsource": "^2.0.2",
"form-data": "^4.0.4",
"iconv-lite": "^0.7.0",
"node-fetch": "^3.3.2",
"socket.io-client": "^4.5.4",
"yauzl": "^3.2.0"
},
"devDependencies": {
"eslint": "^8.50.0",
"prettier": "^3.0.0"
},
"directories": {
"doc": "docs",
"example": "examples",
"test": "tests"
},
"files": [
"terminal-backend/",
"terminal-ui/dist/",
"docs/",
"README.md",
"README_CN.md",
"LICENSE",
"CHANGELOG.md"
]
}