-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.22 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.22 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
{
"name": "alya",
"main": "src/index.tsx",
"type": "module",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.18.1",
"scripts": {
"start": "bun run src/index.tsx",
"check-types": "tsc --noEmit",
"lint": "eslint --config eslint.config.cjs .",
"lint:fix": "eslint --config eslint.config.cjs . --fix",
"format": "prettier --write ."
},
"dependencies": {
"@ai-sdk/openai": "^3.0.29",
"@ai-sdk/openai-compatible": "^2.0.30",
"@openrouter/ai-sdk-provider": "^2.2.3",
"ai": "^6.0.86",
"chalk": "^5.4.0",
"dotenv": "^16.4.7",
"ink": "^6.7.0",
"ink-picture": "^1.3.3",
"ink-spinner": "^5.0.0",
"react": "^19.1.0",
"tsx": "^4.19.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^22.10.1",
"@types/react": "^19.0.0",
"@typescript-eslint/parser": "^8.16.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"espree": "^10.3.0",
"globals": "^15.12.0",
"prettier": "^3.4.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
}
}