-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 KB
/
package.json
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
{
"name": "usagi-mq",
"description": "Effortlessly use RabbitMQ in Nodejs",
"version": "0.1.1",
"author": {
"name": "saltyaom",
"url": "https://github.com/SaltyAom",
"email": "[email protected]"
},
"main": "build/format/cjs/index.js",
"module": "build/format/esm/index.js",
"esnext": "build/format/esm/index.js",
"types": "build/index.d.ts",
"typings": "build/index.d.ts",
"keywords": [
"RabbitMQ",
"RabbitMQ nodejs",
"usagi-mq",
"amqplib"
],
"homepage": "https://github.com/saltyaom/usagi",
"repository": {
"type": "git",
"url": "https://github.com/saltyaom/usagi"
},
"bugs": "https://github.com/SaltyAom/usagi/issues",
"license": "MIT",
"scripts": {
"build": "yarn build:main && yarn build:cjs && yarn build:esm",
"build:main": "tsc",
"build:cjs": "node scripts/cjs.js && yarn build:cjs:type",
"build:cjs:type": "tsc --emitDeclarationOnly --outDir build/format/cjs",
"build:esm": "node scripts/esm.js && yarn build:esm:type",
"build:esm:type": "tsc --emitDeclarationOnly --outDir build/format/esm"
},
"dependencies": {
"@types/amqplib": "^0.8.2",
"amqplib": "^0.8.0",
"nanoid": "^3.2.0"
},
"devDependencies": {
"esbuild": "^0.14.14",
"typescript": "^4.5.5"
}
}