-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.9 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
{
"name": "bot-template",
"version": "0.2.1",
"description": "A shitty discord bot template.",
"main": "./dist/index.js",
"type": "module",
"keywords": [
"discord",
"bot",
"template",
"discordjs",
"discord bot",
"bot template"
],
"author": "JustEvil",
"license": "MIT",
"homepage": "https://github.com/EvilG-MC/epic-template#readme",
"lint-staged": {
"*.ts": ["biome format --write ."]
},
"engines": {
"node": ">=20.12.0"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EvilG-MC/epic-template.git"
},
"bugs": {
"url": "https://github.com/EvilG-MC/epic-template/issues"
},
"scripts": {
"build": "tsup",
"start": "node ./dist/index.js",
"dev": "tsx watch ./src/index.ts",
"lint": "biome lint ./src",
"format": "biome format --write ."
},
"imports": {
"#template/types": "./dist/structures/lib/types/index.js",
"#template/config": "./dist/structures/util/data/Configuration.js",
"#template/constants": "./dist/structures/util/data/Contants.js",
"#template/client": "./dist/structures/base/Base.js",
"#template/builders": "./dist/structures/lib/classes/index.js",
"#template/listeners": "./dist/structures/lib/listeners/index.js",
"#template/utils/*": "./dist/structures/util/*"
},
"dependencies": {
"ascii-table3": "^0.9.0",
"chalk": "^5.3.0",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"glob": "^11.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^22.4.1",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"tsup": "^8.2.4",
"tsx": "^4.17.0",
"typescript": "^5.5.4"
}
}