-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 783 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 783 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
{
"name": "engine-core",
"version": "1.0.0",
"author": "Engine Labs <contact@enginelabs.ai>",
"repository": "github:Engine-Labs/engine-core",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"start": "bun src/cli.ts",
"check": "bunx tsc --noEmit"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.25.0",
"ajv": "^8.17.1",
"blessed": "^0.1.81",
"dotenv": "^16.4.5",
"fetch-retry": "^6.0.0",
"fs-extra": "^11.2.0",
"handlebars": "^4.7.8",
"inquirer": "^10.0.1",
"openai": "^4.52.7",
"pino": "^9.3.1",
"pino-pretty": "^11.2.1",
"sqlite3": "^5.1.7",
"typescript": "^5.0.0"
},
"devDependencies": {
"@types/blessed": "^0.1.25",
"@types/fs-extra": "^11.0.4",
"@types/sqlite3": "^3.1.11"
}
}