-
-
Notifications
You must be signed in to change notification settings - Fork 198
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.75 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "fxembed",
"version": "2.0.0",
"private": true,
"description": "Embed X/Twitter and Bluesky videos, polls, and more on Discord and Telegram",
"workspaces": [
"packages/*"
],
"main": "dist/worker.js",
"scripts": {
"build:atmosphere": "npm run build -w @fxembed/atmosphere",
"build": "npm run build:atmosphere && node esbuild.config.mjs",
"build-local": "node esbuild.config.mjs --no-sentry-upload",
"deploy": "wrangler deploy --no-bundle",
"log": "wrangler tail",
"tail": "wrangler tail",
"dev": "wrangler dev --local",
"reload": "wrangler deploy --no-bundle && wrangler tail",
"prettier": "prettier --write .",
"lint:eslint": "eslint --max-warnings=0 src && npm run lint:eslint -w @fxembed/atmosphere",
"pretest": "npm run build:atmosphere",
"test": "vitest",
"openapi:atmosphere": "npx openapi-typescript https://api.fxtwitter.com/2/openapi.json -o packages/atmosphere/src/relay/generated/fxtwitter-paths.ts && npx openapi-typescript https://api.fxbsky.app/2/openapi.json -o packages/atmosphere/src/relay/generated/fxbsky-paths.ts",
"credentials:strip": "node tools/stripcredentials.mjs",
"credentials:add-csrf": "node tools/add_csrf.mjs",
"credentials:encrypt": "node tools/credential-tools.mjs encrypt",
"credentials:push": "node tools/credential-tools.mjs push",
"credentials:encrypt-push": "node tools/credential-tools.mjs encrypt-push",
"credentials:presign": "node tools/credential-tools.mjs presign",
"credentials:pull": "node tools/credential-tools.mjs pull",
"credentials:change-country": "tsx tools/change_country.ts"
},
"author": "dangered wolf",
"license": "MIT",
"devDependencies": {
"@aws-sdk/client-s3": "^3.1079.0",
"@aws-sdk/s3-request-presigner": "^3.1079.0",
"@cloudflare/vitest-pool-workers": "^0.18.0",
"@cloudflare/workers-types": "^4.20260702.1",
"@eslint/js": "^10.0.1",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@sentry/esbuild-plugin": "^5.3.0",
"@typescript-eslint/eslint-plugin": "^8.62.1",
"@typescript-eslint/parser": "^8.62.1",
"dotenv": "^17.4.2",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.7.0",
"prettier": "^3.9.4",
"ts-loader": "^9.6.2",
"tsx": "^4.23.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1",
"vitest": "^4.1.9",
"wrangler": "^4.107.0"
},
"dependencies": {
"@fxembed/atmosphere": "*",
"@hono/sentry": "^1.2.2",
"@hono/zod-openapi": "^1.4.0",
"cheerio": "^1.2.0",
"hono": "^4.12.27",
"i18next": "^26.3.4",
"i18next-icu": "^2.4.4",
"zod": "^4.4.3"
}
}