-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
99 lines (99 loc) · 2.42 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "gcommands",
"version": "10.0.1",
"description": "Powerful and flexible framework!",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./*": {
"import": "./*.js",
"require": "./*.js"
}
},
"scripts": {
"test": "npm run lint",
"build": "bash scripts/build.bash",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write src/**/*.ts",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"build:tsc": "tsc -p . && gen-esm-wrapper dist/index.js dist/index.mjs",
"build:fix": "node scripts/fixer.mjs",
"build:docs": "typedoc --json docs/typedoc-out.json src/index.ts && node scripts/docs.mjs",
"prepare": "husky install"
},
"author": "Garlic-Team",
"contributors": [
{
"name": "xHyroM",
"url": "https://github.com/xHyroM"
},
{
"name": "S222em",
"url": "https://github.com/S222em"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/Garlic-Team/GCommands.git"
},
"bugs": {
"url": "https://github.com/Garlic-Team/GCommands/issues"
},
"homepage": "https://garlic-team.js.org/#/docs/gcommands/next/general/welcome",
"license": "ISC",
"dependencies": {
"@discordjs/rest": "^1.2.0",
"ms": "^2.1.3",
"tslib": "^2.4.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@commitlint/cli": "17.6.5",
"@commitlint/config-angular": "17.6.5",
"@discordjs/ts-docgen": "0.4.1",
"@gcommands/plugin-language": "1.0.5",
"@google-cloud/firestore": "6.4.2",
"@octokit/action": "4.0.10",
"@prisma/client": "4.10.1",
"@types/keyv": "3.1.4",
"@types/lru-cache": "7.10.9",
"@types/node": "18.13.0",
"@typescript-eslint/eslint-plugin": "5.59.11",
"@typescript-eslint/parser": "5.59.11",
"conventional-changelog-cli": "2.2.2",
"discord.js": "14.15.2",
"eslint": "8.34.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"gen-esm-wrapper": "1.1.3",
"husky": "8.0.3",
"keyv": "4.5.2",
"lint-staged": "13.0.3",
"lru-cache": "7.14.1",
"mongodb": "4.14.0",
"prettier": "2.8.8",
"typedoc": "0.23.25",
"typedoc-plugin-djs-links": "1.2.0",
"typescript": "4.9.5"
},
"keywords": [
"discord.js",
"framework",
"gcommands",
"garlic-team",
"typescript",
"javascript",
"discord",
"bot"
],
"engines": {
"node": ">=16.6"
}
}