-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.24 KB
/
package.json
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
{
"name": "discord-hono",
"version": "0.11.1",
"description": "This library enables you to easily build Discord bots on Cloudflare Workers",
"author": "Luis (https://github.com/luisfun)",
"repository": {
"type": "git",
"url": "https://github.com/luisfun/discord-hono"
},
"homepage": "https://github.com/luisfun/discord-hono",
"license": "MIT",
"keywords": [
"discord-hono",
"discord-bot",
"cloudflare-workers"
],
"files": [
"dist"
],
"type": "module",
"main": "dist/index.js",
"engines": {
"node": ">=18.4.0"
},
"scripts": {
"fix": "biome check --write . && tsc",
"fix:unsafe": "biome check --write --unsafe . && tsc",
"build": "tsup src/index.ts --format esm --dts --clean && attw -P . --ignore-rules cjs-resolves-to-esm",
"patch": "npm run fix && npm run build && npm version patch && git push --follow-tags",
"minor": "npm run fix && npm run build && npm version minor && git push --follow-tags",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.2",
"@biomejs/biome": "1.9.4",
"@discordjs/builders": "^1.10.0",
"discord-api-types": "^0.37.115",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
}
}