Upload of project source code files.

This commit is contained in:
2026-02-17 04:07:37 +01:00
parent b380f42356
commit 723f474228
12 changed files with 5193 additions and 0 deletions

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "scraper",
"version": "1.0.0",
"main": "dist\\src\\index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && cd dist/src && node index.js"
},
"keywords": [],
"author": "syscallwzrd [https://github.com/syscallwizard]",
"license": "MIT",
"description": "Discord attachment scraping utility.",
"dependencies": {
"crypto": "^1.0.1",
"fs-extra": "^11.2.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.5.4",
"typescript": "^5.5.4"
}
}