-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.2 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
{
"name": "chatee",
"version": "0.1.1",
"description": "a simple terminal chat app",
"packageManager": "[email protected]",
"type": "module",
"main": "index.js",
"bin": {
"chatee": "./dist/index.js"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"prerelease": "pnpm run build",
"release": "bumpp",
"prepack": "clean-pkg-json"
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vikiboss/chatee.git"
},
"homepage": "https://github.com/vikiboss/chatee",
"keywords": [
"chatee",
"chat",
"terminal",
"terminal-app",
"icqq",
"oicq",
"qq-bot"
],
"author": "Viki <[email protected]> (https://github.com/vikiboss)",
"license": "MIT",
"dependencies": {
"@icqqjs/icqq": "^1.2.4",
"@shined/reactive": "^0.1.3",
"ink": "^5.0.1",
"ink-select-input": "^6.0.0",
"ink-text-input": "^6.0.0",
"react": "^18.3.1"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@shined/react-use": "^1.1.2",
"@sindresorhus/tsconfig": "^6.0.0",
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"bumpp": "^9.4.1",
"clean-pkg-json": "^1.2.0",
"meow": "^13.2.0",
"tsup": "^8.1.0",
"typescript": "^5.5.3"
}
}