-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.47 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.47 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "agentex-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint --max-warnings=0",
"lint:fix": "next lint --fix",
"lint:all": "eslint . --ext .ts,.tsx,.js,.jsx --max-warnings=0",
"lint:all:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@codemirror/autocomplete": "^6.19.0",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.38.6",
"@hookform/resolvers": "^5.2.1",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/postcss": "^4",
"@tanstack/react-query": "^5.90.3",
"@uiw/react-codemirror": "^4.25.2",
"agentex": "^0.1.0-alpha.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^12.23.24",
"lucide-react": "^0.525.0",
"next": "15.5.14",
"next-themes": "^0.4.6",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-hook-form": "^7.62.0",
"react-toastify": "^11.0.5",
"streamdown": "^2.1.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.6",
"typescript": "5.9.2",
"uuid": "^11.1.0"
},
"overrides": {
"cross-spawn": "^7.0.5",
"tar": "^7.5.11"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^5.1.4",
"vite": "^7.3.1",
"@vitest/coverage-v8": "^4.0.6",
"@vitest/ui": "^4.0.6",
"eslint": "9.32.0",
"eslint-config-next": "15.4.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"happy-dom": "^20.8.9",
"jsdom": "^27.1.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"vitest": "^4.0.6"
}
}