-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.45 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.45 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
{
"name": "queryly",
"description": "Search engine with AI-powered search results",
"license": "MIT",
"author": "Podter",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "bun check && astro build",
"preview": "astro preview",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"check": "astro check",
"docker:up": "docker compose -f compose-dev.yml up -d",
"docker:down": "docker compose -f compose-dev.yml down",
"docker:rm": "docker compose -f compose-dev.yml down -v --remove-orphans"
},
"dependencies": {
"@ai-sdk/groq": "^3.0.24",
"@ai-sdk/provider": "^3.0.8",
"@ai-sdk/react": "^3.0.88",
"@ariakit/react": "^0.4.21",
"@astrojs/node": "^9.5.3",
"@astrojs/react": "^4.4.2",
"@bprogress/core": "^1.3.4",
"@fontsource-variable/inter": "^5.2.8",
"@fontsource/poppins": "^5.2.7",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@upstash/ratelimit": "^2.0.8",
"ai": "^6.0.86",
"astro": "^5.17.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"ioredis": "^5.9.3",
"lucide-react": "^0.564.0",
"ohash": "^2.0.11",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"searxng": "^0.0.5",
"sharp": "^0.34.5",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/tailwind": "^6.0.2",
"@eslint/compat": "^2.0.2",
"@eslint/js": "^9",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^25.2.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/parser": "^8.55.0",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
"eslint-plugin-react-hooks": "^7.0.1",
"mini-svg-data-uri": "^1.4.4",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwind-scrollbar-hide": "^4.0.0",
"tailwindcss": "v3-lts",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0"
}
}