-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.31 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
56
57
58
59
{
"name": "lemonade-code",
"version": "0.1.0",
"description": "Lemonade — an open-source, model-agnostic AI coding CLI powered by OpenRouter. A warm citrus take on the agentic terminal assistant.",
"type": "module",
"bin": {
"lemonade": "dist/cli.js"
},
"main": "dist/cli.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsc -p tsconfig.json --watch",
"start": "node dist/cli.js",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"keywords": [
"ai",
"cli",
"openrouter",
"coding-assistant",
"agent",
"ink",
"llm",
"terminal",
"tui"
],
"author": "",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"gradient-string": "^3.0.0",
"ink": "^5.0.1",
"ink-select-input": "^6.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"open": "^10.1.0",
"openai": "^4.67.3",
"react": "^18.3.1"
},
"devDependencies": {
"@types/gradient-string": "^1.1.6",
"@types/react": "^18.3.11",
"ink-testing-library": "^4.0.0",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
}
}