-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.25 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.25 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
{
"name": "@licensechain/discord-bot",
"version": "1.0.2",
"description": "LicenseChain Discord Bot - Advanced Discord integration for license management",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix"
},
"keywords": [
"licensechain",
"discord",
"bot",
"license",
"management",
"discord.js",
"automation"
],
"author": "LicenseChain LLC",
"license": "Elastic License 2.0",
"dependencies": {
"discord.js": "^14.14.1",
"axios": "^1.6.2",
"dotenv": "^17.2.3",
"winston": "^3.11.0",
"moment": "^2.29.4",
"lodash": "^4.17.21",
"node-cron": "^4.2.1",
"express": "^5.2.1",
"pg": "^8.13.0"
},
"devDependencies": {
"nodemon": "^3.0.2",
"jest": "^30.2.0",
"eslint": "^9.18.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/LicenseChain/LicenseChain-Discord-Bot.git"
},
"bugs": {
"url": "https://github.com/LicenseChain/LicenseChain-Discord-Bot/issues"
},
"homepage": "https://licensechain.app"
}