-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.24 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
{
"name": "leo-bot",
"version": "1.4.3",
"description": "League of Exaordinary Foundry VTT Developers Discord Bot",
"main": "main.js",
"type": "module",
"scripts": {
"leo": "node main.js ./config.json",
"leo-test": "node main.js ./test.config.json",
"leo-dev": "node --inspect --trace-warnings --unhandled-rejections=strict main.js ./dev.config.json",
"create-cmd": "node createCommands.js ./config.json",
"create-cmd-dev": "node createCommands.js ./dev.config.json",
"create-cmd-test": "node createCommands.js ./test.config.json",
"db-init": "node dbInit.js ./config.json",
"db-init-test": "node dbInit.js ./test.config.json",
"db-init-dev": "node dbInit.js ./dev.config.json"
},
"author": "zeel",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/League-of-Foundry-Developers/Leo-bot.git"
},
"dependencies": {
"@typhonjs-fvtt/validate-manifest": "^0.0.0",
"@typhonjs-utils/better-ajv-errors": "^0.0.10",
"better-sqlite3": "^7.1.5",
"columnify": "^1.5.4",
"discord.js": "^13.8.1",
"handlebars": "^4.7.7",
"node-fetch": "^2.6.1",
"sequelize": "^6.6.2",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"sequelize-cli": "^6.2.0"
}
}