forked from FixTweet/FxTwitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.45 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
46
{
"name": "fixtweet-canary",
"version": "1.0.0",
"description": "Embed Twitter videos, polls, and more on Discord and Telegram",
"main": "dist/worker.js",
"scripts": {
"build": "node esbuild.config.mjs",
"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": "jest --config jestconfig.json --verbose"
},
"author": "dangered wolf",
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^4.20241230.0",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@sentry/esbuild-plugin": "^2.22.7",
"@sentry/integrations": "^7.114.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"dotenv": "^16.4.7",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-sonarjs": "^0.25.1",
"jest": "^29.7.0",
"jest-environment-miniflare": "^2.14.4",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"wrangler": "^3.99.0"
},
"dependencies": {
"@hono/sentry": "^1.2.0",
"i18next": "^23.16.8",
"i18next-icu": "^2.3.0",
"hono": "^4.6.14"
}
}