-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 986 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 986 Bytes
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
{
"name": "scode-cli",
"version": "0.1.0",
"description": "S Code AI CLI - A powerful AI command-line interface",
"type": "module",
"main": "dist/index.js",
"bin": {
"scode": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "tsx src/index.ts",
"watch": "tsc --watch",
"lint": "eslint src --ext ts",
"format": "prettier --write src"
},
"keywords": [
"ai",
"cli",
"llm",
"chat"
],
"author": "",
"license": "MIT",
"dependencies": {
"@types/blessed": "^0.1.27",
"blessed": "^0.1.81",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"conf": "^12.0.0",
"inquirer": "^9.2.15",
"node-fetch": "^3.3.2",
"ora": "^8.0.1"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.0",
"eslint": "^8.56.0",
"prettier": "^3.2.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}