-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.3 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.3 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
{
"name": "@graphteon/juriko-cli",
"version": "0.4.0",
"description": "JURIKO - An open-source AI agent that brings the power of AI directly into your terminal.",
"main": "dist/index.js",
"bin": {
"juriko": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"typecheck": "tsc --noEmit"
},
"keywords": [
"cli",
"agent",
"text-editor",
"juriko",
"ai"
],
"author": "anak10thn <anak10thn@gmail.com>",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.24.3",
"axios": "^1.6.0",
"cfonts": "^3.3.0",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"dotenv": "^16.3.0",
"enquirer": "^2.4.1",
"fs-extra": "^11.1.1",
"ink": "^3.2.0",
"ink-markdown": "^1.0.4",
"mcp-client": "^1.13.0",
"openai": "^5.10.1",
"react": "^17.0.2",
"tiktoken": "^1.0.21"
},
"devDependencies": {
"@types/fs-extra": "^11.0.2",
"@types/node": "^20.8.0",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"eslint": "^9.31.0",
"tsx": "^4.0.0",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=16.0.0"
},
"preferGlobal": true
}