Skip to content
This repository was archived by the owner on May 10, 2023. It is now read-only.

Commit 0d4dae5

Browse files
committed
v0.0.1
1 parent 948baac commit 0d4dae5

12 files changed

+2155
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ npm-debug.log*
55
yarn-debug.log*
66
yarn-error.log*
77
lerna-debug.log*
8+
.out/
89

910
# Diagnostic reports (https://nodejs.org/api/report.html)
1011
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

package.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "turing-bot",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "src/index.js",
6+
"scripts": {
7+
"start": "node .",
8+
"dev": "nodemon ."
9+
},
10+
"keywords": [],
11+
"author": "",
12+
"license": "ISC",
13+
"dependencies": {
14+
"@supabase/supabase-js": "^2.1.1",
15+
"chalk": "4",
16+
"discord.js": "^14.7.1",
17+
"dotenv": "^16.0.3",
18+
"openai": "^3.1.0",
19+
"stability-client": "^1.8.0"
20+
},
21+
"devDependencies": {
22+
"eslint": "^8.29.0",
23+
"nodemon": "^2.0.20"
24+
}
25+
}

0 commit comments

Comments
 (0)