-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.19 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "webflow-gpt",
"version": "0.1.1",
"description": "Lets have AI write some meta descriptions for our blog. Shall we?",
"scripts": {
"db:create": "node ./database/create.js",
"db:drop": "rm -f ./database/DB_* && echo \"Dropped all databases 🗑️\"",
"db:add:posts": "node ./api/webflow/posts.js",
"db:update:descriptions": "node ./api/webflow/update-meta.js",
"db:seed": "npm run db:create && npm run db:add:posts && npm run db:update:descriptions",
"magic": "echo \"Time for some magic 🪄\n\" && npm run db:seed && node reports/index.js",
"reboot": "rm -f ./reports/*csv && echo \"Deleted all reports 🗑️\" && npm run db:drop",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/CodingZeal/webflow-gpt.git"
},
"keywords": [
"ai"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodingZeal/webflow-gpt/issues"
},
"homepage": "https://github.com/CodingZeal/webflow-gpt#readme",
"dependencies": {
"axios": "^1.3.4",
"csv-writer": "^1.6.0",
"dotenv": "^16.0.3",
"openai": "^3.1.0",
"sqlite3": "^5.1.6"
}
}