-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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.15.2",
"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": "biome check . && tsc && vitest run --coverage",
"build": "tsup src/index.ts --format esm --dts --clean && attw -P . --ignore-rules cjs-resolves-to-esm"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.3",
"@biomejs/biome": "1.9.4",
"@discordjs/builders": "^1.10.0",
"@vitest/coverage-v8": "^3.0.5",
"discord-api-types": "^0.37.119",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
}
}