-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.22 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.22 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
52
53
54
55
{
"name": "discord-logify",
"version": "0.2.1",
"type": "module",
"description": "Advanced logging system that sends logs to Discord via webhooks",
"keywords": [
"discord",
"logger",
"logging",
"webhook",
"discord-logger",
"discord-webhook"
],
"bin": {
"logify": "dist/bin/cli.js"
},
"homepage": "https://github.com/txuli/discord-logify#readme",
"bugs": {
"url": "https://github.com/txuli/discord-logify/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/txuli/discord-logify.git"
},
"license": "ISC",
"author": "txuli",
"main": "dist/src/index.js",
"module": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist",
"scripts",
"README.md",
"LICENSE"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup src/index.ts bin/cli.ts --format esm,cjs --dts",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"commander": "^13.1.0",
"dotenv": "^17.2.4"
},
"overrides": {
"undici": "^6.23.0"
}
}