-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 991 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 991 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
33
34
35
{
"name": "adnify-cli",
"version": "0.1.0",
"private": true,
"description": "Adnify-Cli - a DDD-first AI coding assistant for the terminal",
"author": "adnaan",
"type": "module",
"packageManager": "bun@1.3.6",
"bin": {
"adnify": "./dist/adnify-cli.js"
},
"scripts": {
"dev": "bun run src/main.tsx",
"start": "bun run src/main.tsx",
"build": "bun build ./src/main.tsx --outfile ./dist/adnify-cli.js --target bun",
"typecheck": "bunx tsc --noEmit",
"test": "bun test",
"check": "bun test src/domain/session/aggregates/ConversationSession.test.ts"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.23",
"@ai-sdk/google": "^3.0.13",
"@ai-sdk/openai": "^3.0.18",
"@ai-sdk/openai-compatible": "^2.0.18",
"ai": "^6.0.49",
"ink": "^4.4.1",
"react": "^18.3.1",
"react-devtools-core": "^4.19.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "^18.3.12",
"typescript": "^5.7.2"
}
}