-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 1.53 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
{
"name": "koreanbots",
"version": "3.2.1",
"description": "JavaScript/TypeScript SDK for KOREANBOTS",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"license": "MIT",
"scripts": {
"test": "cross-env NODE_ENV=test jest --forceExit",
"test:local": "node tests/local/index.js",
"coverage": "yarn test --coverage",
"prepack": "yarn install -D && tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"commit": "git-cz",
"docgen": "typedoc --options ./typedoc.json"
},
"repository": {
"type": "git",
"url": "https://github.com/koreanbots/js-sdk.git"
},
"author": {
"email": "[email protected]",
"name": "zero734kr"
},
"contributors": [
{
"email": "[email protected]",
"name": "wonderlandpark",
"url": "https://wonder.im"
}
],
"engines": {
"node": ">=16.6.0"
},
"dependencies": {
"discord.js": ">=13",
"undici": "^4.7.0"
},
"devDependencies": {
"@next/env": "^12.0.0",
"@swc-node/jest": "^1.3.0",
"@swc-node/register": "^1.3.0",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^26.0.24",
"@types/node": "^16.10.2",
"@types/sharp": "^0.29.2",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"cross-env": "^7.0.3",
"eslint": "^7.12.1",
"eslint-plugin-import": "^2.24.2",
"husky": "^5.1.3",
"jest": "^27.2.4",
"typedoc": "^0.22.4",
"typescript": "^4.4.4"
},
"optionalDependencies": {
"sharp": "^0.29.1"
}
}