-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.06 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
{
"name": "twetch-bot",
"version": "1.0.0",
"description": "A bot that posts TonicPow events to Twetch",
"type": "commonjs",
"scripts": {
"dev": "ts-node-dev src/index.ts",
"prod": "tsc && ts-node ./build/index.js"
},
"contributors": [
{
"name": "Josh",
"url": "https://github.com/jdh7190/"
},
{
"name": "Satchmo",
"url": "https://github.com/rohenaz/"
},
{
"name": "MrZ",
"url": "https://github.com/mrz1836/"
}
],
"keywords": [],
"author": "",
"license": "ISC",
"prettier": {
"singleQuote": true,
"printWidth": 100,
"semi": false
},
"dependencies": {
"@twetch/sdk": "^0.2.12",
"@types/node": "^22.10.5",
"@types/winston": "^2.4.4",
"prettier": "^3.4.2",
"rss-parser": "^3.13.0",
"winston": "^3.17.0"
},
"devDependencies": {
"dotenv": "^16.4.7",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "latest",
"eslint-plugin-prettier": "^5.2.1",
"nodemon": "^3.1.9",
"typescript": "^5.7.2"
}
}