-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.57 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.57 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
{
"name": "@platformatic/coordinator",
"version": "0.4.0",
"description": "Multi-pod destination routing for stateful tiers: Valkey-backed registry with hash member records, set-based destinations, lock routing, and allocation strategies",
"homepage": "https://github.com/platformatic/coordinator",
"author": "Platformatic Inc. <oss@platformatic.dev> (https://platformatic.dev)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/platformatic/coordinator.git"
},
"private": false,
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"test": "node --test --test-reporter=cleaner-spec-reporter test/*.test.ts",
"test:e2e": "pnpm --filter @platformatic/coordinator run build && node --test --test-reporter=cleaner-spec-reporter --test-timeout=60000 test/e2e/*.test.ts",
"test:deps:up": "docker compose up -d --wait",
"test:deps:down": "docker compose down -v",
"lint": "eslint --cache"
},
"dependencies": {
"@fastify/reply-from": "^12.6.2",
"fastify-plugin": "^5.1.0",
"iovalkey": "^0.3.3",
"undici": "^7.23.0"
},
"peerDependencies": {
"fastify": ">=5.0.0"
},
"devDependencies": {
"@types/node": "^25.5.2",
"@types/pg": "^8.11.10",
"cleaner-spec-reporter": "^1.0.3",
"eslint": "^9.39.4",
"fastify": "^5.3.2",
"neostandard": "^0.13.0",
"pg": "^8.13.1"
},
"engines": {
"node": ">= 22.18.0"
}
}