-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 981 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 981 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
36
37
38
39
40
{
"name": "my-v0-project",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint && prettier . --check",
"format": "next lint --fix && prettier . --write",
"fmt": "pnpm format",
"start": "next start",
"types": "tsc --noEmit",
"test": "jest"
},
"dependencies": {
"@ai-sdk/openai": "^1.3.24",
"@ai-sdk/ui-utils": "1.2.11",
"@bitte-ai/agent-sdk": "0.4.2-beta.1",
"@near-js/transactions": "^2.3.0",
"ai": "^3.4.33",
"clsx": "^2.1.1",
"near-api-js": "^5.1.0",
"next": "15.2.4",
"react": "^19",
"react-dom": "^19",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@types/jest": "^30.0.0",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.5.4",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"typescript": "^5"
}
}