This repository was archived by the owner on Mar 23, 2025. It is now read-only.
forked from ItzDerock/discord-html-transcripts
-
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.38 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.38 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": "discord-html-transcripts",
"version": "2.5.7",
"description": "A nicely formatted html transcript generator for discord.js.",
"main": "dist/index.js",
"homepage": "https://github.com/ItzDerock/discord-html-transcripts",
"types": "./dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node ./build.mjs",
"prepublish": "npm run build",
"test:commonjs": "node ./tests/generate.js",
"test:typescript": "ts-node ./tests/generate.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ItzDerock/discord-html-transcripts.git"
},
"keywords": [
"discord.js",
"discord.js-transcripts",
"discord.js-html-transcripts",
"html-transcripts",
"discord-html-transcripts"
],
"author": "Derock <derock@derock.dev>",
"license": "GNU GPLv3",
"files": [
"dist/**/*"
],
"dependencies": {
"axios": "^0.27.2",
"he": "^1.2.0",
"highlight.js": "^11.5.1",
"html-minifier": "^4.0.0",
"jsdom": "^19.0.0",
"twemoji-parser": "^14.0.0"
},
"devDependencies": {
"@types/dompurify": "^2.3.3",
"@types/he": "^1.1.2",
"@types/html-minifier": "^4.0.2",
"@types/jsdom": "^16.2.14",
"@types/twemoji-parser": "^13.1.1",
"clean-css": "^5.3.0",
"discord.js": "^13.7.0",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"zx": "^6.1.0"
}
}