-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.74 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
{
"name": "@ruinguard/core",
"version": "2.0.4",
"description": "The core of the RuinGuard modular bot system",
"keywords": [
"modular",
"discord",
"bot",
"discord.js",
"ruinguard"
],
"homepage": "https://github.com/Khaenri-ah/ruinguard-core#readme",
"bugs": "https://github.com/Khaenri-ah/ruinguard-core/issues",
"author": {
"name": "AroLeaf",
"url": "https://leaf.moe/"
},
"contributors": [
{
"name": "MRDGH2821",
"url": "https://bit.ly/mrdgh2821"
}
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"repository": {
"type": "git",
"url": "https://github.com/Khaenri-ah/ruinguard-core.git"
},
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"scripts": {
"fix": "eslint . --fix --ignore-path .gitignore",
"build": "npx rollup -c",
"build:all": "npm run build && npm run build:docs",
"build:docs": "npx typedoc && mkdocs build -f docs/mkdocs.yml"
},
"dependencies": {
"discord.js": "^13.6.0",
"keyv": "^4.1.1",
"node-fetch": "^2.6.7",
"xregexp": "^5.1.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/keyv": "^3.1.3",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-ruinguard": "^1.0.0",
"rollup": "^2.69.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-typescript2": "^0.31.2",
"typedoc": "^0.22.11",
"typedoc-plugin-markdown": "^3.11.14",
"typedoc-plugin-mdn-links": "^1.0.5",
"typescript": "^4.6.2"
},
"files": [
"dist/**/*",
"types/**/*",
"index.*js"
],
"engines": {
"node": ">=16"
},
"types": "types/index.d.ts"
}