-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 802 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 802 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
32
33
34
35
{
"name": "pixelserve",
"version": "1.0.0",
"private": true,
"type": "module",
"module": "src/index.ts",
"scripts": {
"dev": "bun --hot src/index.ts",
"start": "bun src/index.ts",
"start:cluster": "bun src/cluster.ts",
"test": "bun test",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"build": "tsdown"
},
"dependencies": {
"@elysiajs/cors": "^1.4.1",
"@resvg/resvg-js": "^2.6.2",
"elysia": "^1.4.28",
"file-type": "^21.3.2",
"satori": "^0.26.0",
"sharp": "^0.34.5"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"tsdown": "^0.21.4"
},
"peerDependencies": {
"typescript": "^5.9.3"
}
}