-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 747 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 747 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
{
"name": "uses-llm",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --watch src/server.ts",
"start": "bun src/server.ts",
"start:render": "./scripts/render-start.sh",
"build": "bun run build:css",
"build:render": "./scripts/render-build.sh",
"seed": "bun src/seed.ts",
"seed:render": "./scripts/render-seed.sh",
"seed:smoke": "SEED_LIMIT=20 bun src/seed.ts",
"build:css": "bunx @tailwindcss/cli -i ./src/styles/tailwind.css -o ./public/styles.css --minify"
},
"dependencies": {
"@google/genai": "^1.44.0",
"cheerio": "^1.1.2",
"openai": "^5.23.2"
},
"devDependencies": {
"@tailwindcss/cli": "^4.1.12",
"bun-types": "^1.3.10",
"tailwindcss": "^4.1.12"
}
}