forked from fedify-dev/fedify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.32 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.32 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
93
94
95
96
{
"name": "@fedify/postgres",
"version": "2.1.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://fedify.dev/",
"repository": {
"type": "git",
"url": "git+https://github.com/fedify-dev/fedify.git",
"directory": "packages/postgres"
},
"bugs": {
"url": "https://github.com/fedify-dev/fedify/issues"
},
"funding": [
"https://opencollective.com/fedify",
"https://github.com/sponsors/dahlia"
],
"type": "module",
"main": "./dist/mod.cjs",
"module": "./dist/mod.js",
"types": "./dist/mod.d.ts",
"exports": {
".": {
"types": {
"import": "./dist/mod.d.ts",
"require": "./dist/mod.d.cts",
"default": "./dist/mod.d.ts"
},
"import": "./dist/mod.js",
"require": "./dist/mod.cjs",
"default": "./dist/mod.js"
},
"./kv": {
"types": {
"import": "./dist/kv.d.ts",
"require": "./dist/kv.d.cts",
"default": "./dist/kv.d.ts"
},
"import": "./dist/kv.js",
"require": "./dist/kv.cjs",
"default": "./dist/kv.js"
},
"./mq": {
"types": {
"import": "./dist/mq.d.ts",
"require": "./dist/mq.d.cts",
"default": "./dist/mq.d.ts"
},
"import": "./dist/mq.js",
"require": "./dist/mq.cjs",
"default": "./dist/mq.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"package.json",
"README.md"
],
"dependencies": {
"@js-temporal/polyfill": "catalog:",
"@logtape/logtape": "catalog:"
},
"peerDependencies": {
"@fedify/fedify": "workspace:^",
"postgres": "catalog:"
},
"devDependencies": {
"@fedify/fixture": "workspace:^",
"@fedify/testing": "workspace:^",
"@std/async": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:"
},
"scripts": {
"build:self": "tsdown",
"build": "pnpm --filter @fedify/postgres... run build:self",
"prepack": "pnpm build",
"prepublish": "pnpm build",
"pretest": "pnpm build",
"test": "node --experimental-transform-types --test",
"pretest:bun": "pnpm build",
"test:bun": "bun test --timeout=60000"
}
}