-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
77 lines (77 loc) · 2.14 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
{
"name": "slash-utils",
"version": "0.0.0",
"description": "Slash command utilities for the discord.js support server.",
"scripts": {
"build": "rimraf dist && tsc",
"start": "node --enable-source-maps dist/index.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"prettier": "prettier --write **/*.{ts,js,toml}",
"cmd:glob": "env-cmd node dist/deployFunctions/deployGlobal.js",
"cmd:dev": "env-cmd 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"
},
"type": "module",
"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": "^1.8.0",
"@discordjs/collection": "^2.1.0",
"@discordjs/rest": "^2.3.0",
"@hapi/boom": "^10.0.1",
"@ltd/j-toml": "^1.38.0",
"@vercel/postgres": "^0.9.0",
"algoliasearch": "^4.19.1",
"cheerio": "^1.0.0-rc.12",
"discord-api-types": "^0.37.83",
"dotenv": "^16.3.1",
"he": "^1.2.0",
"html-entities": "^2.4.0",
"kleur": "^4.1.5",
"pino": "^8.15.0",
"polka": "1.0.0-next.15",
"readdirp": "^3.6.0",
"reflect-metadata": "^0.2.2",
"turndown": "^7.1.2",
"undici": "^6.19.3"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-angular": "^17.7.0",
"@types/he": "^1.2.0",
"@types/node": "20.5.7",
"@types/pino": "^7.0.5",
"@types/turndown": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"env-cmd": "^10.1.0",
"eslint": "^8.48.0",
"eslint-config-neon": "0.1.54",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"prettier": "^3.0.2",
"prettier-plugin-toml": "^1.0.0",
"rimraf": "^5.0.1",
"tsyringe": "^4.8.0",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "[email protected]"
}