-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 782 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 782 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
{
"name": "openleaf-extension",
"version": "0.2.0",
"description": "AI-powered citation search and paper review for Overleaf",
"author": "Gaurav Sahu",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/demfier/openleaf-extension"
},
"private": true,
"type": "module",
"scripts": {
"dev": "npm run build && chokidar 'src/**/*' -c 'npm run build:fast'",
"build": "tsc && npm run build:fast",
"build:fast": "rm -rf dist && ENTRY=background vite build && ENTRY=content vite build && ENTRY=options vite build && ENTRY=page-bridge vite build",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/chrome": "^0.0.287",
"chokidar-cli": "^3.0.0",
"typescript": "^5.6.0",
"vite": "^6.0.0"
}
}