This commit is contained in:
암냥 2025-12-11 01:16:37 +09:00
commit e176b1c094
No known key found for this signature in database
17 changed files with 632 additions and 0 deletions

23
package.json Normal file
View file

@ -0,0 +1,23 @@
{
"name": "yanmang",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"start": "bun run ./src/index.ts",
"dev": "bun --hot run ./src/index.ts",
"build": "bun build ./src/index.ts --outfile yanmang --compile --minify",
"lint": "biome check .",
"lint:fix": "biome format ."
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"discord.js": "^14.25.1",
"rss-parser": "^3.13.0"
}
}