@fivetu53/soul-chat 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@fivetu53/soul-chat",
3
+ "version": "1.0.0",
4
+ "description": "Soul Chat - 智能 AI 伴侣命令行客户端",
5
+ "type": "module",
6
+ "bin": {
7
+ "soul": "./bin/index.js"
8
+ },
9
+ "files": [
10
+ "bin"
11
+ ],
12
+ "engines": {
13
+ "node": ">=18.0.0"
14
+ },
15
+ "keywords": ["ai", "chat", "cli", "soul-chat"],
16
+ "author": "u53",
17
+ "license": "UNLICENSED",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/u53/soul_chat.git"
21
+ },
22
+ "homepage": "https://soul-chat.jdctools.com.cn",
23
+ "scripts": {
24
+ "start": "node bin/index.js",
25
+ "dev": "node --watch bin/index.js"
26
+ },
27
+ "dependencies": {
28
+ "ink": "^4.4.1",
29
+ "ink-select-input": "^5.0.0",
30
+ "ink-spinner": "^5.0.0",
31
+ "ink-text-input": "^5.0.1",
32
+ "marked": "^15.0.12",
33
+ "marked-terminal": "^7.3.0",
34
+ "react": "^18.2.0"
35
+ }
36
+ }