-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.19 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
{
"name": "@owlebot/lib",
"version": "0.10.0",
"description": "Owlebot central shared repository.",
"author": "Khaaz <khaaz.dev@gmail.com>, Xerstom <xerstomdev@outlook.fr>",
"link": "https://github.com/owlebot/lib",
"main": "./index.js",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=20.9.0"
},
"exports": {
".": "./index.js",
"./connectors": "./packages/connectors/index.js",
"./endpoints": "./packages/endpoints/index.js",
"./helpers": "./packages/helpers/index.js",
"./middlewares": "./packages/middlewares/index.js",
"./requester": "./packages/requester/index.js",
"./server": "./packages/server/index.js"
},
"dependencies": {
"amqplib": "^0.10.3",
"express": "5.2.0",
"node-fetch": "^3.3.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@owlebot/eslint-config": "^1.0.0",
"eslint": "^8.33.0"
},
"scripts": {
"lint": "eslint packages/**/*.js",
"test": "yarn run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/owlebot/lib.git"
},
"bugs": {
"url": "https://github.com/owlebot/lib/issues"
},
"homepage": "https://github.com/owlebot/lib#readme",
"keywords": []
}