-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.18 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.18 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
{
"name": "cookbookagent",
"version": "1.0.0",
"description": "An intelligent cooking assistant chatbot using HowToCook recipes and LLM capabilities",
"main": "dist/simple-cli.js",
"types": "dist/simple-cli.d.ts",
"bin": {
"cookingagent": "dist/simple-cli.js"
},
"directories": {
"doc": "docs"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/simple-cli.ts",
"dev-ui": "ts-node src/index.ts",
"start": "node dist/simple-cli.js",
"build-data": "ts-node scripts/process-data.ts",
"lint": "eslint src scripts --ext .ts,.tsx",
"type-check": "tsc --noEmit",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cooking",
"recipes",
"ai",
"chatbot",
"cli",
"assistant"
],
"author": "",
"license": "ISC",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@ai-sdk/openai": "^1.3.23",
"ai": "^4.3.17",
"dotenv": "^17.2.0",
"ink": "^6.0.1",
"ink-text-input": "^6.0.0",
"react": "^19.1.0",
"typescript": "^5.8.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.0.13",
"@types/react": "^19.1.8",
"ts-node": "^10.9.2"
}
}