-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.13 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "discord-webhook-library",
"private": false,
"version": "0.9.6",
"type": "module",
"main": "./dist/discord-webhook-library.cjs",
"module": "./dist/discord-webhook-library.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/discord-webhook-library.es.js",
"require": "./dist/discord-webhook-library.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"serve": "vite preview",
"format": "prettier --write .",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "jest --passWithNoTests",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.2.0",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"husky": "^9.1.7",
"jest": "^30.0.5",
"lint-staged": "^16.1.4",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0",
"vite": "^7.0.6",
"vite-plugin-dts": "^4.5.4"
},
"lint-staged": {
"*.ts": [
"npm run lint:fix",
"npm run format"
]
},
"dependencies": {
"axios": "^1.11.0",
"form-data": "^4.0.4",
"zod": "^4.0.17"
},
"description": "A powerful and easy-to-use library for creating and sending richly formatted messages to Discord webhooks, with built-in validation and rate-limiting.",
"keywords": [
"discord",
"webhook",
"library",
"api",
"message",
"embed",
"validation",
"typescript",
"node",
"axios",
"form-data"
],
"author": "Ctrix coderck@proton.me",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ctrixcode/discord-webhook-library.git"
},
"homepage": "https://github.com/ctrixcode/discord-webhook-library#readme",
"bugs": {
"url": "https://github.com/ctrixcode/discord-webhook-library/issues"
}
}