-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.46 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
{
"name": "rss-to-social",
"version": "0.0.0",
"description": "Automatically syndicate your RSS feed to Bluesky and Mastodon. Runs on Cloudflare Workers.",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "wrangler dev --config wrangler.personal.toml",
"deploy": "wrangler deploy --config wrangler.personal.toml",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src test scripts",
"typecheck": "tsc --noEmit && tsc --project tsconfig.scripts.json --noEmit",
"setup": "tsx scripts/setup.ts",
"secrets": "wrangler secret put BLUESKY_APP_PASSWORD --config wrangler.personal.toml && wrangler secret put MASTODON_TOKEN --config wrangler.personal.toml",
"bootstrap": "tsx scripts/bootstrap.ts",
"nudge": "tsx scripts/nudge.ts",
"postinstall": "wrangler types --config wrangler.toml --no-strict-vars"
},
"dependencies": {
"fast-xml-parser": "^5.9.3"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.16.18",
"@types/node": "^26.1.0",
"eslint": "^10.5.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1",
"vitest": "^4.1.9",
"wrangler": "^4.100.0"
},
"overrides": {
"ws": "^8.21.0",
"undici": "^6.24.0",
"devalue": "^5.7.0",
"esbuild": "^0.28.1"
},
"allowScripts": {
"esbuild@0.28.1": true,
"fsevents@2.3.3": true,
"esbuild@0.27.3": true,
"sharp@0.34.5": true,
"workerd@1.20260611.1": true
}
}