mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-05 14:30:11 +01:00
21 lines
855 B
JSON
21 lines
855 B
JSON
{
|
|
"name": "socials-to-chat",
|
|
"version": "1.0.0",
|
|
"description": "Turn creator socials into chatbots with long-term-memory though a simple UI",
|
|
"main": "index.js",
|
|
"author": "Timothy Carambat (Mintplex Labs)",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"scripts": {
|
|
"lint": "cd server && yarn lint && cd .. && cd frontend && yarn lint",
|
|
"setup": "cd server && yarn && cd .. && yarn setup:envs && echo \"Please run yarn dev:server and yarn dev:frontend in separate terminal tabs.\"",
|
|
"setup:envs": "cd server && cp -n .env.example .env.development && cd ../collector && cp -n .env.example .env && cd ..",
|
|
"dev:server": "cd server && yarn dev",
|
|
"dev:frontend": "cd frontend && yarn start",
|
|
"prod:server": "cd server && yarn start",
|
|
"prod:frontend": "cd frontend && yarn build"
|
|
},
|
|
"private": false
|
|
} |