-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.47 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "fuwa.js",
"version": "1.0.0",
"description": "A new and powerful discord bot library; inspired by express",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"fuwa",
"fuwajs",
"discord",
"discordapi",
"discordbot"
],
"scripts": {
"docs": "npx typedoc --out docs --entryPointStrategy expand ./src/lib --json docs/v1.json",
"watch": "tsc -w -p .",
"build": "npx tsc -p .",
"lint": "npx eslint ./src/**/*.ts --fix",
"pretest": "npx yarn build",
"test": "node tests/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fuwajs/Fuwa.js.git"
},
"contributors": [
"Artrix",
"Phoenix"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Fuwajs/Fuwa.js/issues"
},
"homepage": "https://fuwajs.github.io",
"dependencies": {
"undici": "^4.5.1",
"ws": "^8.2.2"
},
"devDependencies": {
"@types/node": "^16.9.1",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.4.0",
"typedoc": "^0.22.4",
"typedoc-plugin-markdown": "^3.11.0",
"typedoc-plugin-rename-defaults": "^0.4.0",
"typescript": "^4.4.3"
},
"optionalDependencies": {
"bufferutil": "^4.0.3",
"chalk": "^4.1.2",
"erlpack": "^0.1.3",
"utf-8-validate": "^5.0.5"
},
"lint-staged": {
"*.--write": "prettier --write"
},
"eslintConfig": {
"plugins": [
"prettier"
],
"extends": [
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json",
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"prettier/prettier": [
"error",
{},
{
"usePrettierrc": true
}
],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/explicit-module-boundary-types": "off"
}
}
}