forked from ItzDerock/discord-html-transcripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.1 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": "oceanic-transcripts",
"version": "1.0.4",
"description": "A nicely formatted html transcript generator for oceanic.js.",
"main": "dist/index.js",
"homepage": "https://github.com/TheMonDon/oceanic-transcripts",
"types": "./dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p tsconfig.json",
"prepack": "npm run build",
"test:typescript": "ts-node ./tests/generate.ts",
"lint": "prettier --write --cache . && eslint --cache --fix .",
"typecheck": "tsc -p tsconfig.eslint.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheMonDon/oceanic-transcripts.git"
},
"keywords": [
"oceanic",
"oceanic.js",
"oceanic.js-transcripts",
"oceanic.js-html-transcripts",
"html-transcripts",
"discord-html-transcripts",
"discord-transcripts"
],
"author": "TheMonDon <bforster48@gmail.com>",
"contributors": [
{
"name": "bunnywasnothere",
"url": "https://github.com/ShootDot"
}
],
"license": "GPL-3.0",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.js.map"
],
"devDependencies": {
"@types/node": "^20.11.17",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@derockdev/discord-components-core": "^3.6.1",
"@derockdev/discord-components-react": "^3.6.1",
"discord-markdown-parser": "~1.1.0",
"oceanic.js": "^1.11.0",
"react": "0.0.0-experimental-6639ed3b3-20240111",
"react-dom": "0.0.0-experimental-6639ed3b3-20240111",
"simple-markdown": "^0.7.3",
"twemoji": "^14.0.2",
"undici": "^5.28.2"
},
"overrides": {
"react": "$react"
},
"directories": {
"doc": "docs",
"test": "tests"
},
"bugs": {
"url": "https://github.com/TheMonDon/oceanic-transcripts/issues"
}
}