-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 754 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 754 Bytes
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
{
"name": "chatwithpdf",
"description": "AI PDF chatbot - Chat with your PDF documents using AI",
"private": true,
"version": "1.0.0",
"author": "Ishan Avasthi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ishanavasthi/ChatWithPDF.git"
},
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"build": "yarn run turbo:command build",
"turbo:command": "yarn turbo",
"lint": "yarn run turbo:command lint",
"lint:fix": "yarn run turbo:command lint:fix",
"format": "yarn run turbo:command format",
"format:check": "yarn run turbo:command format:check"
},
"devDependencies": {
"turbo": "latest"
}
}