-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.3 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.3 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
{
"name": "resource-webhooks",
"version": "0.2.0",
"description": "",
"contributors": [
"Souji <timoqueezle@gmail.com>"
],
"license": "Apache-2.0",
"type": "module",
"private": true,
"scripts": {
"build": "rimraf dist && tsc",
"start": "node dist/index.js",
"deploy": "node --unhandled-rejections=strict dist/index.js",
"lint": "npx biome lint",
"format": "npx biome format --write"
},
"keywords": [
"discord",
"api",
"webhook",
"discordapp"
],
"dependencies": {
"@discordjs/rest": "^2.6.0",
"@keyv/sqlite": "^4.0.8",
"discord-api-types": "^0.38.41",
"keyv": "^5.6.0",
"luxon": "^1.26.0",
"pino": "^6.12.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-angular": "^9.1.2",
"@types/luxon": "^1.26.2",
"@types/node": "^25.4.0",
"@types/pino": "^6.3.9",
"lefthook": "^2.1.3",
"lint-staged": "^10.2.13",
"rimraf": "^3.0.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-angular"
],
"rules": {
"type-enum": [
2,
"always",
[
"chore",
"build",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"types",
"wip"
]
]
}
}
}