-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 992 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 992 Bytes
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
{
"name": "@kazami-devs/transcripts",
"version": "1.1.0",
"description": "Generate beautiful HTML transcripts from discord.js channels.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && copyfiles -u 1 \"src/**/*.{mustache,md}\" dist",
"dev": "tsc -w"
},
"keywords": [
"discord",
"discordjs",
"transcript",
"html"
],
"author": "Camilla Viana",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kazami-Devs/Kazami-Transcripts.git"
},
"homepage": "https://github.com/Kazami-Devs/Kazami-Transcripts#readme",
"peerDependencies": {
"discord.js": "^14.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@types/mustache": "^4.2.6",
"@types/node": "^25.3.0",
"copyfiles": "^2.4.1",
"typescript": "^5.9.3"
},
"dependencies": {
"mustache": "^4.2.0"
}
}