Skip to content

Commit 1beb778

Browse files
initial commit
1 parent 7ceb5ca commit 1beb778

File tree

7 files changed

+478
-1
lines changed

7 files changed

+478
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
.env

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
# AnyGPT-bot
1+
# AnyGPT-bot
2+
pnpm i
3+
npx tsx src/server.ts

package.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "AnyGPT-bot",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"type": "module",
7+
"scripts": {
8+
"start": "node index.js",
9+
"test": "echo \"Error: no test specified\" && exit 1"
10+
},
11+
"keywords": [],
12+
"author": "",
13+
"license": "ISC",
14+
"dependencies": {
15+
"discord.js": "^14.15.3",
16+
"dotenv": "^16.4.5",
17+
"fs": "0.0.1-security"
18+
},
19+
"devDependencies": {
20+
"@types/node": "^22.1.0",
21+
"@types/ws": "^8.5.12",
22+
"ts-node": "^10.9.2",
23+
"typescript": "^5.5.4"
24+
}
25+
}

0 commit comments

Comments
 (0)