-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.51 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
{
"name": "strife.js",
"version": "4.1.4",
"description": "A Discord bot framework built around TypeScript support and ease of setup.",
"keywords": [
"discord",
"discord-bot",
"discord.js",
"typescript"
],
"homepage": "https://discord.gg/WaEbDrXKxK",
"bugs": {
"url": "https://github.com/cobaltt7/strife.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cobaltt7/strife.js.git"
},
"license": "MIT",
"author": {
"name": "cobaltt7",
"url": "https://github.com/cobaltt7"
},
"type": "module",
"main": "./dist/index.js",
"files": [
"dist",
"src",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rm -rf dist && tsc --project tsconfig.json",
"dev": "tsc --project tsconfig.json --watch",
"format": "prettier --write \"**\" --ignore-path .prettierignore --ignore-unknown --cache"
},
"prettier": "@redguy12/prettier-config",
"dependencies": {
"serialize-error": "11.0.3"
},
"devDependencies": {
"@redguy12/prettier-config": "3.1.1",
"@types/node": "<=18.11",
"discord.js": "14.17.0-dev.1727784303-b20346f43",
"prettier": "3.3.3",
"typescript": "5.4.5"
},
"peerDependencies": {
"discord.js": "*"
},
"engines": {
"node": ">=18.11.0",
"npm": ">=7.0.0"
},
"overrides": {
"@discordjs/builders": "1.9.1-dev.1727784293-b20346f43",
"@discordjs/collection": "1.6.0-dev.1699315767-344a3f934",
"@discordjs/formatters": "dev",
"@discordjs/rest": "dev",
"@discordjs/util": "dev",
"@discordjs/ws": "1.2.0-dev.1721822666-fcd35ea2e"
}
}