forked from Vedinsoh/discord-auto-publisher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.18 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "discord-auto-publisher",
"version": "2.3.4",
"description": "Automatically publish messages or news in your announcement channels!",
"author": "Forcellrus",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/Forcellrus/Discord-Auto-Publisher#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Forcellrus/Discord-Auto-Publisher.git"
},
"bugs": {
"url": "https://github.com/Forcellrus/Discord-Auto-Publisher/issues"
},
"keywords": [
"discord",
"bot",
"discord.js",
"publisher"
],
"scripts": {
"start": "yarn run build && yarn run start:prod",
"start:prod": "node dist/index.js",
"start:dev": "nodemon --watch 'src/**/*.ts' --exec ts-node src/index.ts",
"build": "rm -rf dist && tsc",
"build:watch": "rm -rf dist && tsc -w",
"reinstall": "rm -rf node_modules && yarn install",
"lint": "eslint src --ext .ts",
"prettier": "prettier --write src"
},
"dependencies": {
"@joshdb/core": "^1.2.7",
"@joshdb/json": "^1.0.5",
"bufferutil": "4.0.6",
"discord-hybrid-sharding": "1.7.4",
"discord.js-light": "^4.9.0",
"dotenv": "16.0.3",
"glob": "^8.0.3",
"pino": "8.6.1",
"pino-pretty": "9.1.1",
"re2": "^1.17.7",
"url-regex-safe": "^3.0.0",
"utf-8-validate": "^5.0.9"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/node": "18.8.3",
"@types/url-regex-safe": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.4"
},
"imports": {
"#config": "./dist/config.json",
"#client": "./dist/AutoPublisher.js",
"#modules/*": "./dist/modules/*.js",
"#functions/*": "./dist/functions/*.js",
"#structures/*": "./dist/structures/*.js",
"#types/*": "./dist/types/*.js",
"#util/*": "./dist/util/*.js"
},
"engines": {
"node": ">=16.9.0",
"yarn": ">=1.12.0",
"npm": "please-use-yarn"
}
}