-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.46 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.46 KB
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
{
"name": "manbo-debugger",
"version": "0.0.3",
"description": "Manbo-Debugger. Debugging tool for manbo based bots.",
"keywords": [
"manbo-debugger",
"manbo",
"debug",
"debugger",
"tool",
"logging",
"executor"
],
"main": "./src/index.js",
"types": "./typings/index.d.ts",
"scripts": {
"lint": "eslint --ext js,jsx,ts,tsx src",
"lint:fix": "eslint --ext js,jsx,ts,tsx src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Manbo-js/debugger.git"
},
"author": "Jam-Manbo",
"license": "MIT",
"bugs": {
"url": "https://github.com/Manbo-js/debugger/issues"
},
"homepage": "https://github.com/Manbo-js/debugger#readme",
"engines": {
"node": ">=16.16.0"
},
"dependencies": {
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/eslint-parser": "^7.19.1",
"@types/node": "^16.3.1",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"babel-eslint": "^10.1.0",
"manbo": "^0.0.2",
"manbo-collector": "^0.0.2",
"eslint": "^7.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-markdown": "^2.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.0.0",
"typescript": "^4.1.2"
},
"peerDependencies": {
"manbo": ">=0.0.2",
"manbo-collector": "^0.0.3"
}
}