forked from KeiryoJS/Keiryo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "neocord",
"version": "0.0.0-alpha.7",
"description": "A powerful and feature-rich discord library.",
"keywords": [
"discord",
"typescript",
"powerful",
"feature-rich"
],
"author": "MeLike2D",
"homepage": "https://github.com/neo-cord/neocord#readme",
"license": "MIT",
"main": "dist/index.js",
"types": "typings/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/neo-cord/neocord.git"
},
"scripts": {
"build": "rm -rf dist && tsc --removeComments",
"build:types": "tsc -d",
"lint": "eslint --ext .ts",
"lint:fix": "eslint --ext .ts --fix",
"format": "prettier --write src && yarn lint:fix"
},
"dependencies": {
"@neocord/gateway": "^1.2.3",
"@neocord/rest": "^1.2.0",
"@neocord/utils": "1.0.15",
"discord-api-types": "^0.5.0",
"tslib": "^2.0.1"
},
"devDependencies": {
"@neocord/eslint-config": "neo-cord/eslint-config",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"discord.js-docgen": "discordjs/docgen",
"eslint": "^7.10.0",
"jsdoc": "^3.6.6",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
}
}