-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.51 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.51 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
53
54
{
"name": "s3proxy-docker",
"description": "High-performance Docker container for S3Proxy with Fastify",
"version": "3.0.0",
"type": "module",
"engines": {
"node": ">=22.13.0"
},
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "NODE_ENV=development LOG_LEVEL=debug node --watch server.js",
"test": "node --test test/*.test.js",
"test:watch": "node --test --watch test/*.test.js",
"test:shared": "node test/shared-integration.js",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"docker:build": "docker build -t s3proxy-docker:latest .",
"docker:run": "docker run --rm -p 8080:8080 -e BUCKET=s3proxy-public s3proxy-docker:latest",
"docker:test": "docker build --target test -t s3proxy-docker:test . && docker run --rm s3proxy-docker:test",
"security:audit": "npm audit --audit-level moderate",
"deps:update": "npm update",
"deps:check": "npm outdated"
},
"dependencies": {
"s3proxy": "^3.0.0",
"fastify": "^5.4.0",
"@fastify/helmet": "^12.0.1",
"@fastify/sensible": "^6.0.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"pino-pretty": "^13.0.0"
},
"keywords": [
"s3",
"proxy",
"fastify",
"docker",
"aws",
"streaming",
"performance",
"typescript",
"ai",
"ml",
"models"
],
"author": "George Moon <george.moon@gmail.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/gmoon/s3proxy-docker.git"
}
}