-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
76 lines (76 loc) · 2.19 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
{
"name": "axoncore",
"version": "2.1.0",
"description": "The best fully featured discord bot framework. Universal Client, Command and Event handler.",
"author": "Khaaz <[email protected]>",
"link": "https://github.com/Khaaz/AxonCore",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"esm": "^3.2.25",
"inquirer": "^7.1.0"
},
"devDependencies": {
"@axonteam/doc-gen": "^1.2.0",
"@axonteam/eslint-config": "^2.2.0",
"@types/mongoose": "^5.5.32",
"@types/node": "^13.9.2",
"@types/signale": "^1.2.1",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"chalk": "^2.4.2",
"discord.js": "discordjs/discord.js",
"eris": "abalabahaha/eris#dev",
"eslint": "^6.8.0",
"mongoose": "^5.7.7",
"signale": "^1.4.0",
"superagent": "^5.2.1",
"typescript": "^3.9.7",
"winston": "^3.2.1",
"yarn": "^1.22.0"
},
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"lint": "yarn run lint:js && yarn run lint:ts",
"lint:js": "eslint src examples *.js",
"lint:ts": "eslint index.d.ts types/**/*.ts",
"tsc": "tsc index.d.ts --noEmit --skipLibCheck true",
"test": "yarn run lint && yarn run tsc",
"test:push": "eslint src examples *.js",
"test:publish": "eslint src *.js",
"docgen": "node ./scripts/gendoc.js && cp README.md ./docs/README.md",
"start:eris": "node -r esm examples/eris/src/index.js",
"start:djs": "node -r esm examples/djs/src/index.js",
"pm2start:eris": "node examples/eris/scripts/start.js",
"pm2start:djs": "node examples/djs/scripts/start.js",
"postinstall": "node ./scripts/typings.js",
"dep": "yarn install --ignore-scripts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Khaaz/AxonCore.git"
},
"bugs": {
"url": "https://github.com/Khaaz/AxonCore/issues"
},
"homepage": "https://github.com/Khaaz/AxonCore#readme",
"keywords": [
"discord",
"bot",
"framework",
"client",
"eris",
"discord.js",
"discordjs",
"detritus",
"detritus.js",
"core",
"handler",
"commandClient",
"commandHandler",
"commandFramework"
]
}