forked from KlasaCommunityPlugins/functions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.44 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.44 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
{
"name": "@kcp/functions",
"version": "1.0.0",
"description": "A basic plugin which adds reloadable functions to Klasa",
"homepage": "https://github.com/KlasaCommunityPlugins/functions",
"bugs": {
"url": "https://github.com/KlasaCommunityPlugins/functions/issues"
},
"license": "MIT",
"author": "KlasaCommunityPlugins",
"contributors": [
"QuantumlyTangled"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/KlasaCommunityPlugins/functions.git"
},
"scripts": {
"test": "eslint src/*.ts",
"build": "yarn tsc",
"docs": "yarn build && yarn dg --source dist --custom guides/.docconfig.json --output dist/docs.json --logging"
},
"peerDependencies": {
"klasa": "github:pengubot/klasa#stable"
},
"devDependencies": {
"@kcp/lint": "github:KlasaCommunityPlugins/lint-files",
"@types/node": "^14.0.1",
"@types/ws": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"discord.js": "^12.5.1",
"eslint": "^7.10.0",
"eslint-config-klasa": "github:dirigeants/klasa-lint",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"klasa": "github:pengubot/klasa#stable",
"typescript": "^4.0.2"
},
"engines": {
"node": ">=10.1.0"
},
"files": [
"dist/",
"README.md",
"LICENSE"
]
}