This repository was archived by the owner on Jul 3, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.47 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.47 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
{
"name": "@fedify/postgres",
"version": "0.4.0",
"description": "PostgreSQL drivers for Fedify",
"keywords": [
"fedify",
"postgresql",
"postgres"
],
"license": "MIT",
"author": {
"name": "Hong Minhee",
"email": "hong@minhee.org",
"url": "https://hongminhee.org/"
},
"homepage": "https://github.com/fedify-dev/postgres",
"repository": {
"type": "git",
"url": "git+https://github.com/fedify-dev/postgres.git"
},
"bugs": {
"url": "https://github.com/fedify-dev/postgres/issues"
},
"funding": [
"https://opencollective.com/fedify",
"https://github.com/sponsors/dahlia"
],
"type": "module",
"exports": {
"./mod": {
"types": "./dist/mod.d.ts",
"import": "./dist/mod.js"
},
"./kv": {
"types": "./dist/src/kv.d.ts",
"import": "./dist/src/kv.js"
},
"./mq": {
"types": "./dist/src/mq.d.ts",
"import": "./dist/src/mq.js"
},
"./package.json": "./package.json"
},
"dependencies": {
"@js-temporal/polyfill": "^0.5.1",
"@logtape/logtape": "^1.0.0"
},
"peerDependencies": {
"@fedify/fedify": "^1.7.2",
"postgres": "^3.4.7"
},
"devDependencies": {
"@std/async": "jsr:^1.0.5",
"tsdown": "^0.12.9",
"typescript": "^5.8.3"
},
"scripts": {
"build": "tsdown",
"prepack": "tsdown",
"prepublish": "tsdown",
"test": "tsdown && node --experimental-transform-types --test",
"test:bun": "tsdown && bun test --timeout=10000"
}
}