initial commit
All checks were successful
ci/woodpecker/push/ci Pipeline was successful

This commit is contained in:
2025-08-29 22:56:40 -04:00
commit ed95dd08a2
11 changed files with 2540 additions and 0 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "auto-dm",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"start": "node index.js"
},
"author": "",
"license": "SEE LICENSE IN README.md",
"description": "",
"dependencies": {
"dotenv": "^17.2.1",
"puppeteer": "^24.17.1"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"eslint": "^9.34.0",
"globals": "^16.3.0"
}
}