forked from discordjs/discord-utils-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.2 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
{
"name": "slash-utils",
"version": "0.0.0",
"description": "Slash command utilities for the discord.js support server.",
"scripts": {
"build": "rimraf dist && tsc --skipLibCheck",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"prettier": "prettier --write **/*.{ts,js,toml}",
"cmd:glob": "node dist/deployFunctions/deployGlobal.js",
"cmd:dev": "node dist/deployFunctions/deployDev.js",
"validate-tags": "node dist/workflowFunctions/validateTagsWithoutLinks.js",
"validate-tags:withlinks": "node dist/workflowFunctions/validateTagsWithLinks.js",
"prepare": "is-ci || husky install"
},
"main": "dist/index.js",
"license": "Apache-2.0",
"private": true,
"author": "Souji <[email protected]>",
"keywords": [
"discord",
"webhook",
"discordapp",
"discord.js",
"slashcommand",
"utilities"
],
"dependencies": {
"@discordjs/builders": "^0.13.0-dev.1647259738.2297c2b",
"@discordjs/collection": "^0.1.6",
"@discordjs/rest": "^0.4.0-dev.1647259762.2297c2b",
"@hapi/boom": "^9.1.3",
"@ltd/j-toml": "^1.12.2",
"algoliasearch": "^4.10.2",
"discord-api-types": "^0.30.0-next.f702988.1648076699",
"discordjs-docs-parser": "^1.3.0",
"dotenv": "^10.0.0",
"he": "^1.2.0",
"html-entities": "^2.3.2",
"kleur": "^4.1.4",
"pino": "^8.11.0",
"polka": "1.0.0-next.15",
"turndown": "^7.1.1",
"undici": "^5.20.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-angular": "^12.1.4",
"@types/he": "^1.1.2",
"@types/node": "17",
"@types/pino": "^6.3.8",
"@types/turndown": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.30.0",
"eslint-config-marine": "^9.0.6",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2",
"prettier-plugin-toml": "^0.3.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=17.0.0"
},
"packageManager": "[email protected]",
"resolutions": {
"discordjs-docs-parser@^1.3.0": "patch:discordjs-docs-parser@npm%3A1.3.0#./.yarn/patches/discordjs-docs-parser-npm-1.3.0-a400695967.patch"
}
}