shenxiang-ai-cli 0.1.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.
Files changed (2) hide show
  1. package/dist/index.js +2813 -0
  2. package/package.json +54 -0
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "shenxiang-ai-cli",
3
+ "version": "0.1.0",
4
+ "description": "沈翔的AI助手 - 终端里的AI全栈开发搭档",
5
+ "type": "module",
6
+ "bin": {
7
+ "sxai": "./dist/index.js"
8
+ },
9
+ "main": "./dist/index.js",
10
+ "files": [
11
+ "dist",
12
+ "README.md"
13
+ ],
14
+ "repository": {
15
+ "type": "git",
16
+ "url": ""
17
+ },
18
+ "engines": {
19
+ "node": ">=18.0.0"
20
+ },
21
+ "scripts": {
22
+ "dev": "tsx watch src/index.ts",
23
+ "build": "tsup src/index.ts --format esm --clean",
24
+ "start": "node dist/index.js",
25
+ "clean": "rimraf dist",
26
+ "prepublishOnly": "npm run build"
27
+ },
28
+ "keywords": ["ai", "cli", "coding", "assistant", "devpilot", "fullstack", "chinese", "developer-tools"],
29
+ "license": "MIT",
30
+ "dependencies": {
31
+ "chalk": "^5.3.0",
32
+ "commander": "^12.1.0",
33
+ "conf": "^13.0.1",
34
+ "glob": "^11.0.0",
35
+ "inquirer": "^9.3.0",
36
+ "marked": "^14.0.0",
37
+ "marked-terminal": "^7.2.0",
38
+ "ora": "^8.1.0",
39
+ "simple-git": "^3.27.0",
40
+ "openai": "^4.70.0",
41
+ "undici": "^6.21.0",
42
+ "cli-highlight": "^2.1.11",
43
+ "diff": "^7.0.0",
44
+ "strip-ansi": "^7.1.0"
45
+ },
46
+ "devDependencies": {
47
+ "@types/node": "^22.0.0",
48
+ "@types/diff": "^6.0.0",
49
+ "tsup": "^8.3.0",
50
+ "tsx": "^4.19.0",
51
+ "typescript": "^5.6.0",
52
+ "rimraf": "^6.0.0"
53
+ }
54
+ }