-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 985 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 985 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
44
45
46
47
{
"name": "@ovencord/transcript",
"version": "1.0.7",
"description": "Ultrafast, zero-dependency Discord HTML transcript generator exclusively for the Bun ecosystem.",
"module": "src/index.ts",
"main": "src/index.ts",
"type": "module",
"author": {
"name": "Luigi Colantuono",
"url": "https://github.com/LuigiColantuono"
},
"homepage": "https://github.com/ovencord",
"license": "MIT",
"funding": {
"type": "individual",
"url": "https://paypal.me/l0g4n7"
},
"repository": {
"type": "git",
"url": "https://github.com/ovencord/transcript.git"
},
"keywords": [
"discord",
"transcript",
"bun",
"html",
"generator",
"performance",
"zero-dependency",
"discord-v2"
],
"scripts": {
"check": "biome check .",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@types/bun": "latest",
"typescript": "5.9.3"
},
"dependencies": {
"@ovencord/mustache": "1.0.3"
},
"publishConfig": {
"access": "public"
}
}