-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.18 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
{
"name": "@tastekim/chat-cli",
"version": "1.4.8",
"main": "dist/index.js",
"bin": {
"chat-cli": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"dev:debug": "DEBUG=true NODE_ENV=development ts-node src/index.ts",
"start": "node dist/index.js",
"start:debug": "DEBUG=true NODE_ENV=development node dist/index.js",
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"prepublishOnly": "npm run build",
"build:linux": "npm run build && npm run package:linux",
"package:linux": "mkdir -p deployment && cp -r dist package.json package-lock.json deployment/ && tar -czf chat-cli-linux.tar.gz -C deployment ."
},
"keywords": ["chat", "cli", "terminal", "websocket", "real-time"],
"author": {
"name": "tastekim",
"email": "dev.tastekim@gmail.com",
"url": "https://github.com/tastekim"
},
"license": "MIT",
"description": "💬Connect with developers worldwide through an interactive terminal chat experience while you code!💻",
"homepage": "https://github.com/tastekim/chat-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tastekim/chat-cli.git"
},
"bugs": {
"url": "https://github.com/tastekim/chat-cli/issues"
},
"engines": {
"node": ">=22.14.0"
},
"dependencies": {
"blessed": "^0.1.81",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"highlight.js": "^11.11.1",
"inquirer": "^12.7.0",
"jimp": "^1.6.0",
"marked": "^16.0.0",
"open": "^10.1.2",
"terminal-image": "^3.1.1",
"terminal-kit": "^3.1.1",
"ws": "^8.18.3"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/blessed": "^0.1.25",
"@types/inquirer": "^9.0.8",
"@types/jest": "^30.0.0",
"@types/marked": "^5.0.2",
"@types/node": "^24.0.13",
"@types/terminal-kit": "^2.5.6",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"eslint": "^9.30.1",
"globals": "^16.3.0",
"jest": "^30.0.4",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.36.0"
}
}