-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 777 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 777 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": "ai-trend-publish-cloudflare",
"version": "1.0.0",
"description": "AI TrendPublish - Cloudflare Pages部署版本",
"type": "module",
"scripts": {
"dev": "wrangler pages dev public",
"build": "npm run build:client && npm run build:api",
"build:client": "vite build",
"build:api": "esbuild src/api/index.ts --bundle --format=esm --outfile=public/_worker.js --platform=neutral",
"deploy": "npm run build && wrangler pages deploy public",
"preview": "vite preview"
},
"dependencies": {
"@hono/node-server": "^1.8.0",
"axios": "^1.13.2",
"cheerio": "^1.1.2",
"hono": "^4.0.0"
},
"devDependencies": {
"@types/node": "^20.19.27",
"esbuild": "^0.20.2",
"vite": "^5.4.21",
"wrangler": "^4.56.0"
}
}