forked from Erisa/discord-oidc-worker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.08 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
{
"name": "discord-oidc-worker",
"version": "0.1.0",
"private": true,
"description": "Discord OpenID Connect wrapper in Cloudflare Workers.",
"scripts": {
"start": "wrangler dev",
"deploy": "wrangler deploy --minify src/main.ts",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"check": "prettier --check \"src/**/*.{ts,tsx}\" && tsc --noEmit"
},
"license": "MIT",
"dependencies": {
"@mikuroxina/mini-fn": "^6.0.0",
"hono": "^4.0.0",
"jose": "^5.2.0"
},
"packageManager": "[email protected]",
"devDependencies": {
"@cloudflare/workers-types": "^4.20231218.0",
"@eslint/js": "^9.0.0",
"@types/bun": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-simple-import-sort": "^12.0.0",
"globals": "^15.0.0",
"prettier": "^3.1.0",
"typescript": "^5.3.2",
"typescript-eslint": "^8.0.0",
"wrangler": "^3.22.1"
}
}