-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.73 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
55
56
{
"name": "@eyevinn/tams-gateway",
"version": "0.3.0",
"description": "Time-addressable Media Store (TAMS) gateway: indexes segmented media flows and serves presigned S3 URLs.",
"scripts": {
"test": "vitest run",
"prepare": "husky",
"lint": "eslint .",
"pretty": "prettier --check --ignore-unknown .",
"typecheck": "tsc --noEmit -p tsconfig.json",
"dev": "tsx watch -r dotenv/config src/main.ts",
"start": "tsx -r dotenv/config src/main.ts",
"interop": "tsx scripts/interop-coverage.ts",
"interop:conformance": "scripts/interop-conformance.sh"
},
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"@aws-sdk/client-s3": "3.1074.0",
"@aws-sdk/credential-providers": "^3.1075.0",
"@aws-sdk/s3-request-presigner": "^3.1075.0",
"@aws-sdk/util-format-url": "^3.972.25",
"@fastify/cors": "^11.2.0",
"@fastify/static": "^9.1.3",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^6.0.0",
"@fastify/type-provider-typebox": "^6.1.0",
"@sinclair/typebox": "^0.34.49",
"@smithy/hash-node": "^4.4.2",
"@smithy/protocol-http": "^5.5.2",
"@smithy/url-parser": "^4.4.2",
"dotenv": "^17.4.2",
"fastify": "5.8.5",
"nano": "^11.0.5",
"tsx": "^4.22.4",
"uuid": "^14.0.1"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@types/node": "^26.0.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.7.0",
"husky": "^9.1.7",
"prettier": "^3.8.4",
"typescript": "^6.0.3",
"typescript-eslint": "8",
"vitest": "^4.1.9",
"yaml": "^2.7.1"
},
"packageManager": "pnpm@9.15.4"
}