-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.15 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
{
"name": "reddittodiscordnotifications",
"version": "1.0.31",
"description": "Automate sending Reddit RSS feed updates to your Discord server",
"license": "GPL-3.0-or-later",
"author": "Ragnar Lothbrok <[email protected]>",
"homepage": "https://github.com/Valhalla-Development/RedditToDiscordNotifications#readme",
"repository": "https://github.com/Valhalla-Development/RedditToDiscordNotifications.git",
"bugs": {
"url": "https://github.com/Valhalla-Development/RedditToDiscordNotifications/issues"
},
"scripts": {
"lint": "tsc --noEmit -p tsconfig.json && biome check --files-ignore-unknown=true --diagnostic-level=error --no-errors-on-unmatched src",
"lint:fix": "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true src",
"dev": "bun --watch src/index.ts",
"start": "bun src/index.ts",
"type-check": "tsc --noEmit"
},
"dependencies": {
"dotenv": "^16.4.5",
"html-entities": "^2.5.2",
"minimal-discord-webhook-node": "^1.0.1",
"rss-feed-emitter": "^3.2.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"typescript": "^5.5.4",
"ultracite": "^4.1.20"
}
}