-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.04 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
{
"name": "cypher-coder-cli",
"version": "2.0.0",
"description": "Cypher Coder - Premium agentic CLI tool powered by Qwen 72B & Llama 3.3",
"main": "dist/index.js",
"bin": {
"cypher": "./dist/index.js"
},
"type": "module",
"scripts": {
"build": "esbuild src/index.tsx --bundle --platform=node --format=esm --target=esnext --outdir=dist --packages=external --banner:js=\"#!/usr/bin/env node\"",
"start": "npm run build && node dist/index.js"
},
"keywords": [
"ai",
"cli",
"agent",
"cypher",
"coding",
"assistant"
],
"author": "DJAKOUA KWANKAM",
"license": "MIT",
"dependencies": {
"@clack/prompts": "^0.7.0",
"@types/react": "^19.2.17",
"chalk": "^5.3.0",
"ink": "^7.1.0",
"ink-box": "^1.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"react": "^19.2.7"
},
"devDependencies": {
"@types/node": "^26.0.0",
"esbuild": "^0.28.1",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
}
}