sweety-html-transcripts 0.2.6-dev-23572845170.0 → 0.2.6-dev-24539159209.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -14
- package/package.json +14 -16
package/README.md
CHANGED
|
@@ -51,8 +51,7 @@ Instead, please open a thread on [this](https://discord.gg/4JmKY8wgB6) server.
|
|
|
51
51
|
|
|
52
52
|
### Example usage using the built in message fetcher.
|
|
53
53
|
|
|
54
|
-
|
|
55
|
-
{% tab title="Seyfert" %}
|
|
54
|
+
#### Seyfert
|
|
56
55
|
|
|
57
56
|
```js
|
|
58
57
|
const discordTranscripts = require('sweety-html-transcripts');
|
|
@@ -72,9 +71,7 @@ await client.messages.write(channelId, {
|
|
|
72
71
|
});
|
|
73
72
|
```
|
|
74
73
|
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
{% tab title="Discord.js" %}
|
|
74
|
+
#### Discord.js
|
|
78
75
|
|
|
79
76
|
```js
|
|
80
77
|
const discordTranscripts = require('sweety-html-transcripts');
|
|
@@ -94,13 +91,10 @@ await channel.send({
|
|
|
94
91
|
});
|
|
95
92
|
```
|
|
96
93
|
|
|
97
|
-
{% endtab %}
|
|
98
|
-
{% endtabs %}
|
|
99
94
|
|
|
100
95
|
### Or if you prefer, you can pass in your own messages.
|
|
101
96
|
|
|
102
|
-
|
|
103
|
-
{% tab title="Seyfert" %}
|
|
97
|
+
#### Seyfert
|
|
104
98
|
|
|
105
99
|
```js
|
|
106
100
|
const discordTranscripts = require('sweety-html-transcripts');
|
|
@@ -121,9 +115,7 @@ await client.messages.write(channelId, {
|
|
|
121
115
|
});
|
|
122
116
|
```
|
|
123
117
|
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
{% tab title="Discord.js" %}
|
|
118
|
+
#### Discord.js
|
|
127
119
|
|
|
128
120
|
```js
|
|
129
121
|
const discordTranscripts = require('sweety-html-transcripts');
|
|
@@ -144,8 +136,6 @@ await channel.send({
|
|
|
144
136
|
});
|
|
145
137
|
```
|
|
146
138
|
|
|
147
|
-
{% endtab %}
|
|
148
|
-
{% endtabs %}
|
|
149
139
|
|
|
150
140
|
## ⚙️ Configuration
|
|
151
141
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sweety-html-transcripts",
|
|
3
|
-
"version": "0.2.6-dev-
|
|
3
|
+
"version": "0.2.6-dev-24539159209.0",
|
|
4
4
|
"description": "A sweety formatted html transcript generator for discord bots.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -58,32 +58,30 @@
|
|
|
58
58
|
"@eslint/eslintrc": "^3.3.5",
|
|
59
59
|
"@eslint/js": "^10.0.1",
|
|
60
60
|
"@penwin/discord-components-core": "^4.3.8",
|
|
61
|
-
"@types/
|
|
62
|
-
"@types/node": "^25.5.0",
|
|
61
|
+
"@types/node": "^25.6.0",
|
|
63
62
|
"@types/react": "^19.2.14",
|
|
64
63
|
"@types/react-dom": "^19.2.3",
|
|
65
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
66
|
-
"@typescript-eslint/parser": "^8.
|
|
67
|
-
"discord.js": "^14.
|
|
68
|
-
"dotenv": "^17.
|
|
69
|
-
"eslint": "^10.
|
|
70
|
-
"globals": "^17.
|
|
64
|
+
"@typescript-eslint/eslint-plugin": "^8.58.2",
|
|
65
|
+
"@typescript-eslint/parser": "^8.58.2",
|
|
66
|
+
"discord.js": "^14.26.3",
|
|
67
|
+
"dotenv": "^17.4.2",
|
|
68
|
+
"eslint": "^10.2.0",
|
|
69
|
+
"globals": "^17.5.0",
|
|
71
70
|
"husky": "^9.1.7",
|
|
72
|
-
"prettier": "^3.8.
|
|
73
|
-
"seyfert": "4.
|
|
71
|
+
"prettier": "^3.8.3",
|
|
72
|
+
"seyfert": "4.3.0",
|
|
74
73
|
"sharp": "^0.34.5",
|
|
75
74
|
"tsx": "^4.21.0",
|
|
76
75
|
"typescript": "^6.0.2",
|
|
77
|
-
"vite": "^8.0.
|
|
76
|
+
"vite": "^8.0.8"
|
|
78
77
|
},
|
|
79
78
|
"dependencies": {
|
|
80
79
|
"@derockdev/discord-components-core": "^3.6.1",
|
|
81
|
-
"@derockdev/discord-components-react": "^3.6.1",
|
|
82
80
|
"@penwin/discord-components-react-render": "^4.3.8",
|
|
83
|
-
"discord-api-types": "^0.38.
|
|
81
|
+
"discord-api-types": "^0.38.47",
|
|
84
82
|
"discord-markdown-parser": "~1.3.1",
|
|
85
|
-
"react": "19.2.
|
|
86
|
-
"react-dom": "19.2.
|
|
83
|
+
"react": "19.2.5",
|
|
84
|
+
"react-dom": "19.2.5",
|
|
87
85
|
"simple-markdown": "^0.7.3",
|
|
88
86
|
"twemoji": "^14.0.2"
|
|
89
87
|
},
|