feat: build initial prototype #1

Merged
naomi merged 6 commits from feat/init into main 2025-07-19 16:11:40 -07:00
3 changed files with 534 additions and 16 deletions
Showing only changes of commit 9523adbc68 - Show all commits
+8 -1
View File
@@ -5,7 +5,10 @@
"main": "index.js", "main": "index.js",
"type": "module", "type": "module",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "lint": "eslint ./src --max-warnings 0",
"build": "tsc",
"start": "op run --env-file=./prod.env -- node ./prod/index.js",
"test": "echo 'No tests yet' && exit 0"
}, },
"keywords": [], "keywords": [],
"author": "", "author": "",
@@ -16,5 +19,9 @@
"@nhcarrigan/typescript-config": "4.0.0", "@nhcarrigan/typescript-config": "4.0.0",
"eslint": "9.31.0", "eslint": "9.31.0",
"typescript": "5.8.3" "typescript": "5.8.3"
},
"dependencies": {
"discord.js": "14.21.0",
"fastify": "5.4.0"
} }
} }
+524 -15
View File
File diff suppressed because it is too large Load Diff
+2
View File
@@ -0,0 +1,2 @@
LOG_TOKEN="op://Environment Variables - Naomi/Alert Server/api_auth"
DISCORD_TOKEN="op://Environment Variables - Naomi/Hikari/discord_token"