2023-06-04 04:28:07 +02:00
{
2023-06-09 18:30:42 +02:00
"name" : "anything-llm" ,
2023-07-25 19:37:04 +02:00
"version" : "0.1.0" ,
"description" : "The best solution for turning private documents into a chat bot using off-the-shelf tools and commercially viable AI technologies." ,
2023-06-04 04:28:07 +02:00
"main" : "index.js" ,
"author" : "Timothy Carambat (Mintplex Labs)" ,
"license" : "MIT" ,
2023-06-08 19:29:17 +02:00
"engines" : {
"node" : ">=18"
} ,
2023-06-04 04:28:07 +02:00
"scripts" : {
2023-06-08 06:31:35 +02:00
"lint" : "cd server && yarn lint && cd .. && cd frontend && yarn lint" ,
2023-06-13 20:26:11 +02:00
"setup" : "cd server && yarn && cd ../frontend && yarn && cd .. && yarn setup:envs && echo \"Please run yarn dev:server and yarn dev:frontend in separate terminal tabs.\"" ,
2023-08-17 00:34:03 +02:00
"setup:envs" : "cp -n ./frontend/.env.example ./frontend/.env && cp -n ./server/.env.example ./server/.env.development && cp -n ./collector/.env.example ./collector/.env && cp -n ./docker/.env.example ./docker/.env && echo \"All ENV files copied!\n\"" ,
2023-06-04 04:28:07 +02:00
"dev:server" : "cd server && yarn dev" ,
2023-06-07 22:43:22 +02:00
"dev:frontend" : "cd frontend && yarn start" ,
"prod:server" : "cd server && yarn start" ,
2023-06-14 19:34:22 +02:00
"prod:frontend" : "cd frontend && yarn build" ,
2023-07-20 21:13:40 +02:00
"generate:cloudformation" : "node cloud-deployments/aws/cloudformation/generate.mjs" ,
"generate::gcp_deployment" : "node cloud-deployments/gcp/deployment/generate.mjs"
2023-06-04 04:28:07 +02:00
} ,
2023-06-14 20:02:46 +02:00
"private" : false
2023-06-04 04:28:07 +02:00
}