-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.84 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
57
58
{
"name": "@privateaim/node-message-broker",
"type": "module",
"version": "0.1.0",
"private": true,
"module": "./dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"author": {
"name": "Peter Placzek",
"email": "contact@tada5hi.net",
"url": "https://tada5hi.net"
},
"license": "Apache-2.0",
"description": "Node-side message broker: container-facing REST API, end-to-end crypto, and local delivery; relays to the Hub durable mailbox.",
"engines": {
"node": ">=24"
},
"dependencies": {
"@privateaim/core-http-kit": "^0.11.5",
"@privateaim/errors": "^0.8.42",
"@privateaim/kit": "^0.11.5",
"@privateaim/messenger-http-kit": "^0.11.5",
"@privateaim/messenger-kit": "^0.11.5",
"@privateaim/server-http-kit": "^0.11.5",
"@privateaim/server-kit": "^0.11.5",
"@routup/basic": "^3.0.0",
"@routup/decorators": "^5.0.0",
"@validup/zod": "^0.3.3",
"citty": "^0.2.1",
"dotenv": "^17.4.1",
"eldin": "^1.1.0",
"envix": "^1.3.0",
"hapic": "^2.8.2",
"lru-cache": "^11.5.1",
"orkos": "^1.1.1",
"reflect-metadata": "^0.2.2",
"routup": "^6.0.0",
"validup": "^0.5.1",
"zod": "^4.3.6"
},
"scripts": {
"cli": "node dist/cli/index.mjs",
"build:js": "tsdown",
"build:types": "tsc --emitDeclarationOnly -p tsconfig.build.json",
"build": "rimraf dist/ && npm run build:js && npm run build:types",
"test": "cross-env NODE_ENV=test vitest run --config test/vitest.config.ts"
},
"devDependencies": {
"vitest": "^4.1.7"
}
}