forked from 3ventic/discord-rss
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.97 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "discord-rss",
"version": "1.0.0",
"description": "Lightweight, easy-to-use RSS feed => Discord webhook service",
"scripts": {
"sync": "svelte-kit sync",
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"start": "node build",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"build:runner": "tsc --module es2022 --target es2022 --moduleResolution node --allowSyntheticDefaultImports true --outDir runner src/runner.ts",
"runner": "node -r dotenv/config runner/runner.js"
},
"keywords": [
"discord",
"webhook",
"rss",
"nodejs",
"svelte",
"authjs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/conrmahr/discord-rss.git"
},
"author": "Conor Meagher <conor@hireconor.com> (https://conr.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/conrmahr/discord-rss/issues"
},
"homepage": "https://github.com/conrmahr/discord-rss",
"devDependencies": {
"@sveltejs/adapter-node": "^3.0.1",
"@sveltejs/kit": "^2.3.3",
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"@tailwindcss/forms": "^0.5.7",
"@types/node": "^20.9.1",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"autoprefixer": "^10.4.17",
"dotenv": "^16.3.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.35.0",
"postcss": "^8.4.33",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^3.0.3",
"svelte": "^4.2.9",
"svelte-check": "^3.6.3",
"tailwindcss": "^3.3.5",
"tslib": "^2.4.1",
"typescript": "^5.2.2",
"vite": "^5.0.11"
},
"type": "module",
"dependencies": {
"@auth/core": "^0.21.0",
"@auth/sveltekit": "^0.7.0",
"ioredis": "^5.3.2",
"rss-parser": "^3.13.0"
},
"engines": {
"node": ">=18"
}
}