-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 KB
/
package.json
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
{
"name": "deno.re",
"version": "1.2.1",
"scripts": {
"dev": "npm run build && node --env-file .env build/index.js",
"start": "node build/index.js",
"build": "astro build && esbuild registry/index.ts --bundle --format=esm --loader:.html=text --loader:.svg=text --packages=external --platform=node --outfile=build/index.js",
"pretest": "node build/index.js &",
"test": "node --test",
"posttest": "kill $(lsof -t -i:3000)",
"www": "astro dev"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.577.0",
"@fastify/cors": "^9.0.1",
"@sinclair/typebox": "^0.32.30",
"fastify": "^4.27.0",
"fflate": "^0.8.2",
"fs-extra": "^11.2.0",
"lru-cache": "^10.2.2",
"octokit": "^4.0.2",
"rimraf": "^5.0.7",
"semver": "^7.6.2",
"slash": "^5.1.0"
},
"devDependencies": {
"@astrojs/check": "^0.7.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.12.12",
"@types/semver": "^7.5.8",
"@types/tar": "^6.1.13",
"astro": "^4.8.6",
"esbuild": "^0.21.3",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=22"
},
"type": "module"
}