-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.37 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
{
"author": "NotReallyEight",
"bugs": {
"url": "https://github.com/ATN-Development/erebus/issues"
},
"contributors": [
"NotReallyEight",
"DTrombett"
],
"dependencies": {
"@sapphire/async-queue": "^1.5.0",
"discord-api-types": "^0.37.43",
"form-data": "^4.0.0",
"tslib": "^2.5.3",
"ws": "^8.13.0"
},
"description": "From the darkness to you, bring your Discord bot to a next level.",
"devDependencies": {
"@tsconfig/node14": "^1.0.3",
"@types/node": "^14.17.31",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.42.0",
"typescript": "^5.1.3"
},
"engines": {
"node": ">=14.0.0"
},
"homepage": "https://github.com/ATN-Development/erebus#readme",
"keywords": [
"discord",
"erebus",
"discord-api-wrapper",
"discord-api"
],
"license": "Apache-2.0",
"main": "dist/index.js",
"name": "erebus",
"repository": {
"type": "git",
"url": "https://github.com/ATN-Development/erebus.git"
},
"scripts": {
"build": "npm run lint && npm run prettier && tsc",
"lint": "eslint src/**/*.ts --fix",
"prepublish": "npm run build",
"prettier": "prettier --write src/**/*.ts",
"test": "eslint src && prettier --check src/**/*.ts && tsc --noEmit"
},
"types": "types/index.d.ts",
"version": "0.0.1"
}