-
-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathpackage.json
45 lines (45 loc) · 1.43 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
44
45
{
"name": "fxembed",
"version": "2.0.0",
"description": "Embed X/Twitter and Bluesky videos, polls, and more on Discord and Telegram",
"main": "dist/worker.js",
"scripts": {
"build": "node esbuild.config.mjs",
"build-local": "node esbuild.config.mjs --no-sentry-upload",
"publish": "wrangler deploy --no-bundle",
"deploy": "wrangler deploy --no-bundle",
"log": "wrangler tail",
"reload": "wrangler deploy --no-bundle && wrangler tail",
"prettier": "prettier --write .",
"lint:eslint": "eslint --max-warnings=0 src",
"test": "vitest"
},
"author": "dangered wolf",
"license": "MIT",
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.8.17",
"@cloudflare/workers-types": "^4.20250421.0",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@sentry/esbuild-plugin": "^3.3.1",
"@sentry/integrations": "^7.114.0",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"dotenv": "^16.5.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.2",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-sonarjs": "^0.25.1",
"prettier": "^3.5.3",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"vitest": "^3.1.2",
"wrangler": "^4.12.0"
},
"dependencies": {
"@hono/sentry": "^1.2.1",
"hono": "^4.7.7",
"i18next": "^25.0.1",
"i18next-icu": "^2.3.0"
}
}