2023-06-03 19:28:07 -07:00
{
2023-06-09 09:30:42 -07:00
"name" : "anything-llm" ,
"version" : "0.0.1-beta" ,
"description" : "Turn anything into a chattable document through a simple UI" ,
2023-06-03 19:28:07 -07:00
"main" : "index.js" ,
"author" : "Timothy Carambat (Mintplex Labs)" ,
"license" : "MIT" ,
2023-06-08 10:29:17 -07:00
"engines" : {
"node" : ">=18"
} ,
2023-06-03 19:28:07 -07:00
"scripts" : {
2023-06-07 21:31:35 -07:00
"lint" : "cd server && yarn lint && cd .. && cd frontend && yarn lint" ,
2023-06-13 11:26:11 -07: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-06-13 13:19:17 -07:00
"setup:envs" : "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-03 19:28:07 -07:00
"dev:server" : "cd server && yarn dev" ,
2023-06-07 13:43:22 -07:00
"dev:frontend" : "cd frontend && yarn start" ,
"prod:server" : "cd server && yarn start" ,
2023-06-14 10:34:22 -07:00
"prod:frontend" : "cd frontend && yarn build" ,
"generate:cloudformation" : "node aws/cloudformation/generate.mjs"
2023-06-03 19:28:07 -07:00
} ,
2023-06-14 11:02:46 -07:00
"private" : false
2023-06-03 19:28:07 -07:00
}