-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.21 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@corbits/mailbox",
"version": "0.1.0",
"type": "module",
"license": "LGPL-2.1-only",
"description": "Universal principal-keyed inbox, mountable onto any Interchange host. Requires @intx 0.2.2 or newer.",
"keywords": [
"corbits",
"interchange",
"intx",
"mailbox",
"inbox",
"hono",
"drizzle",
"postgres"
],
"author": "Corbits",
"homepage": "https://github.com/corbitsdev/corbits-mailbox#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/corbitsdev/corbits-mailbox.git"
},
"bugs": {
"url": "https://github.com/corbitsdev/corbits-mailbox/issues"
},
"engines": {
"node": ">=22"
},
"corbits": {
"minimumIntxVersion": "0.2.2"
},
"workspaces": [
"examples/*"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"!src/**/*.test.ts",
"!src/test-helpers.ts",
"LICENSE",
"README.md"
],
"sideEffects": false,
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"prepack": "bun run build",
"prepare": "node scripts/prepare.mjs",
"typecheck": "tsc --noEmit",
"test": "bun test src",
"test:coverage": "bun test src --coverage",
"test:acceptance": "bun run build && bun install --force && bun test --cwd examples/reference-host"
},
"dependencies": {
"@hono/standard-validator": "0.2.3",
"@standard-community/standard-json": "0.3.5",
"@standard-community/standard-openapi": "0.2.9",
"arktype": "2.1.29",
"hono-openapi": "1.3.1"
},
"peerDependencies": {
"@intx/log": "^0.2.2",
"@intx/mime": "^0.2.2",
"@intx/types": "^0.2.2",
"drizzle-orm": "^0.45.2",
"hono": "^4.12.0",
"postgres": "^3.4.0"
},
"devDependencies": {
"@intx/log": "0.2.2",
"@intx/mime": "0.2.2",
"@intx/types": "0.2.2",
"@types/bun": "1.1.14",
"@types/json-schema": "7.0.15",
"@types/node": "22.10.5",
"drizzle-orm": "0.45.2",
"hono": "4.12.32",
"openapi-types": "12.1.3",
"postgres": "3.4.9",
"typescript": "5.7.2"
},
"overrides": {
"drizzle-orm": "0.45.2"
}
}