-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.15 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.15 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
{
"name": "repix",
"version": "1.0.3",
"description": "Repix - Image transformation service",
"main": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/bansal/repix.git"
},
"scripts": {
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"build": "tsc && vite build",
"cf:deploy": "wrangler deploy",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"repix",
"image-resize",
"image-transformation",
"image-optimization",
"hono",
"sharp"
],
"author": "Jiten Bansal <hello@bansal.io>",
"license": "MIT",
"dependencies": {
"@hono/node-server": "^1.19.9",
"defu": "^6.1.4",
"dotenv": "^17.3.1",
"evlog": "^2.0.0",
"hono": "^4.12.0",
"sharp": "^0.34.5",
"ufo": "^1.6.3"
},
"devDependencies": {
"@cloudflare/containers": "^0.1.0",
"@types/node": "^25.3.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"wrangler": "^4.0.0"
},
"engines": {
"node": ">=22.0.0"
}
}