-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.27 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
42
43
{
"name": "discord-hono",
"version": "0.11.4",
"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 .",
"fix:unsafe": "biome check --write --unsafe .",
"test": "tsc && vitest run --coverage",
"build": "tsup src/index.ts --format esm --dts --clean && attw -P . --ignore-rules cjs-resolves-to-esm",
"patch": "npm run test && npm run build && npm version patch && git push --follow-tags",
"minor": "npm run test && npm run build && npm version minor && git push --follow-tags"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.3",
"@biomejs/biome": "1.9.4",
"@discordjs/builders": "^1.10.0",
"@vitest/coverage-v8": "^3.0.4",
"discord-api-types": "^0.37.117",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
}
}