This repository was archived by the owner on Jul 2, 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
60 lines (60 loc) · 1.51 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.51 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
{
"name": "@fedify/amqp",
"version": "0.4.0",
"description": "AMQP/RabbitMQ driver for Fedify",
"keywords": [
"fedify",
"amqp",
"rabbitmq"
],
"license": "MIT",
"author": {
"name": "Hong Minhee",
"email": "hong@minhee.org",
"url": "https://hongminhee.org/"
},
"homepage": "https://github.com/fedify-dev/amqp",
"repository": {
"type": "git",
"url": "git+https://github.com/fedify-dev/amqp.git"
},
"bugs": {
"url": "https://github.com/fedify-dev/amqp/issues"
},
"funding": [
"https://github.com/sponsors/dahlia"
],
"type": "module",
"main": "./dist/mod.js",
"module": "./dist/mod.js",
"types": "./dist/mod.d.ts",
"exports": {
".": {
"import": "./dist/mod.js",
"types": "./dist/mod.d.ts"
},
"./package.json": "./package.json"
},
"peerDependencies": {
"@fedify/fedify": "^1.7.0",
"amqplib": "^0.10.8"
},
"devDependencies": {
"@hongminhee/suite": "^0.6.3",
"@js-temporal/polyfill": "^0.5.1",
"@std/assert": "jsr:^1.0.13",
"@std/async": "jsr:^1.0.13",
"@types/amqplib": "^0.10.7",
"tsdown": "^0.12.7",
"typescript": "^5.8.3"
},
"scripts": {
"build": "tsdown",
"prepack": "tsdown",
"prepublish": "tsdown",
"test": "tsdown && node --experimental-transform-types --test",
"test:bun": "tsdown && bun test --timeout 15000",
"test:deno": "deno task test",
"test-all": "tsdown && node --experimental-transform-types --test && bun test --timeout 15000 && deno task test"
}
}