initial commit
All checks were successful
deploy / release-image (push) Successful in 1m47s
deploy / deploy (push) Successful in 46s

This commit is contained in:
2024-10-17 07:51:46 +00:00
commit 29793e655c
9 changed files with 486 additions and 0 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "rickroll",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "npx tsc --build",
"clean": "npx tsc --build --clean",
"test": "ts-node index.ts"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"dotenv": "^16.4.5"
},
"devDependencies": {
"typescript": "^5.6.3",
"@types/node": "^22.7.6"
}
}