-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
68 lines (68 loc) · 1.8 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
{
"name": "dokdo",
"version": "1.0.1",
"description": "Dokdo. Easy Discord bot debuging tool.",
"scripts": {
"build": "tsup",
"dev": "yarn test:bot",
"lint": "eslint --ext js,jsx,ts,tsx src",
"lint:fix": "eslint --ext js,jsx,ts,tsx src --fix",
"test": "yarn build && mocha --exit",
"test:bot": "yarn build && node examples/bot",
"test:shard": "yarn build && node examples/shard",
"update": "yarn upgrade-interactive"
},
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"files": [
"src/**/*",
"dist/**/*",
"examples/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wonderlandpark/dokdo.git"
},
"author": {
"name": "wonderlandpark",
"email": "wonderlandpark@outlook.kr"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/wonderlandpark/dokdo/issues"
},
"homepage": "https://github.com/wonderlandpark/dokdo#readme",
"dependencies": {
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/node": "^16.3.1",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^7.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^36.0.6",
"eslint-plugin-markdown": "^2.0.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^9.0.1",
"tsup": "^6.3.0",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=16.9.0"
},
"packageManager": "yarn@3.2.4",
"peerDependencies": {
"discord.js": "14"
}
}