First commit

This commit is contained in:
2024-02-21 18:47:21 +01:00
commit 0b025587bd
13 changed files with 2291 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "chromanews",
"module": "index.js",
"type": "module",
"scripts": {
"start": "bun run ./index.js",
"dev": "bun run ./index.js --debug"
},
"devDependencies": {
"@types/bun": "latest",
"eslint": "^8.56.0",
"prettier": "^3.2.5"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"form-data": "^4.0.0",
"node-cron": "^3.0.3",
"pino": "^8.19.0"
}
}