-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 942 Bytes
/
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
{
"name": "@marcuwynu23/frbjs",
"version": "1.1.6",
"description": "a simple rabbitmq wrapper library ",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build:cjs": "tsc --outDir dist/cjs --module CommonJS",
"build:esm": "tsc --outDir dist/esm --module ESNext",
"build": "npm run build:cjs && npm run build:esm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcuwynu23/frbjs.git"
},
"keywords": [
"rabbitmq",
"simple",
"npm",
"amqplib"
],
"author": "Mark Wayne B. Menorca",
"license": "ISC",
"bugs": {
"url": "https://github.com/marcuwynu23/frbjs/issues"
},
"homepage": "https://github.com/marcuwynu23/frbjs#readme",
"dependencies": {
"amqplib": "^0.10.5"
},
"devDependencies": {
"@types/amqplib": "^0.10.6",
"@types/node": "^22.10.10",
"typescript": "^5.7.3"
}
}