-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.77 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
{
"name": "strife.js",
"version": "4.3.1",
"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 \"**\" \"!./dist/\" --ignore-unknown --cache",
"lint": "eslint",
"test": "npm run build && node --enable-source-maps --test"
},
"prettier": "@redguy12/prettier-config",
"dependencies": {
"serialize-error": "11.0.3"
},
"devDependencies": {
"@redguy12/prettier-config": "3.2.1",
"@types/node": "<=18.11",
"discord.js": "14.17.0-dev.1727611463-e1012cc54",
"eslint": "9.17.0",
"eslint-config-cobaltt7": "1.0.0",
"prettier": "3.4.2",
"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": "0.6.0-dev.1732709129-97ffa201a",
"@discordjs/rest": "2.4.1-dev.1732709129-97ffa201a",
"@discordjs/util": "1.1.2-dev.1732709129-97ffa201a",
"@discordjs/ws": "1.2.0-dev.1721822666-fcd35ea2e",
"discord-api-types": "0.37.106-next.7debb55.1732021051"
}
}