2 Commits

Author SHA1 Message Date
naomi 9523adbc68 chore: scripts, secrets, dependencies 2025-07-19 14:02:12 -07:00
naomi b663eee130 feat: tooling and scaffolding 2025-07-19 13:48:51 -07:00
8 changed files with 4677 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
node_modules
prod
+6
View File
@@ -0,0 +1,6 @@
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"eslint.validate": ["typescript"],
}
+5
View File
@@ -0,0 +1,5 @@
import NaomisConfig from '@nhcarrigan/eslint-config';
export default [
...NaomisConfig
]
+27
View File
@@ -0,0 +1,27 @@
{
"name": "chibika",
"version": "0.0.0",
"description": "A bot that shares ASCII art.",
"main": "index.js",
"type": "module",
"scripts": {
"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": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.13.1",
"devDependencies": {
"@nhcarrigan/eslint-config": "5.2.0",
"@nhcarrigan/typescript-config": "4.0.0",
"eslint": "9.31.0",
"typescript": "5.8.3"
},
"dependencies": {
"discord.js": "14.21.0",
"fastify": "5.4.0"
}
}
+4621
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"
+7
View File
@@ -0,0 +1,7 @@
/**
* @copyright nhcarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
null;
+7
View File
@@ -0,0 +1,7 @@
{
"extends": "@nhcarrigan/typescript-config",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./prod"
}
}