-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 733 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 733 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
{
"name": "icon-forge",
"description": "API for generating dynamic SVG file icons with custom extensions",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "npm run build && vite preview",
"deploy": "npm run build && wrangler deploy",
"cf-typegen": "wrangler types --env-interface CloudflareBindings"
},
"version": "1.0.0",
"keywords": [
"file-icons",
"svg",
"dynamic",
"api",
"cloudflare-workers",
"hono"
],
"dependencies": {
"hono": "^4.7.11"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.2.3",
"@types/react": "^19.1.6",
"vite": "^6.3.5",
"vite-ssr-components": "^0.2.0",
"wrangler": "^4.17.0"
}
}