-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 931 Bytes
/
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
{
"name": "enjo",
"version": "0.0.0-alpha.6",
"description": "The official bot framework for the neocord discord library.",
"main": "dist/index.js",
"types": "typings/index.d.ts",
"repository": "https://github.com/neo-cord/enjo",
"author": "melike2d",
"license": "MIT",
"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"
},
"devDependencies": {
"@neocord/eslint-config": "neo-cord/eslint-config",
"@neocord/utils": "^1.0.15",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"neocord": "0.0.0-alpha.7",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
},
"peerDependencies": {
"neocord": "0.0.0-alpha.7"
}
}