-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 949 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
32
33
34
35
36
{
"name": "yuuko",
"version": "2.3.4",
"description": "No-frills Discord command framework for Eris",
"main": "dist/Yuuko.js",
"types": "dist/Yuuko.d.ts",
"files": [
"dist/*"
],
"scripts": {
"build": "tsc",
"docs": "typedoc src --out docs/docs --theme minimal",
"lint": "eslint 'src/**/*.ts'",
"lint-fix": "eslint --fix 'src/**/*.ts'",
"prepublishOnly": "eslint 'src/**/*.ts' && tsc"
},
"repository": "eritbh/yuuko",
"author": "eritbh <erin20913@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eritbh/yuuko/issues"
},
"homepage": "https://eritbh.me/yuuko",
"devDependencies": {
"@geo1088/eslint-config": "^3.1.0",
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"typedoc": "^0.21.6",
"typescript": "4"
},
"peerDependencies": {
"eris": "*"
}
}