-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.62 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "pacific-ocean-ai",
"version": "3.3.7",
"private": true,
"description": "AI-powered writing assistant for the Overleaf LaTeX editor.",
"license": "AGPL-3.0-only",
"author": "BigCatNotFat",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/BigCatNotFat/PacificOceanAI.git"
},
"bugs": {
"url": "https://github.com/BigCatNotFat/PacificOceanAI/issues"
},
"homepage": "https://github.com/BigCatNotFat/PacificOceanAI#readme",
"keywords": [
"ai",
"browser-extension",
"chrome-extension",
"edge-extension",
"latex",
"overleaf",
"openai",
"chatgpt",
"typescript",
"react"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"build:bridge": "node scripts/build-bridge-new.js",
"build:bridge:old": "node scripts/build-bridge.js",
"build:all": "npm run build:bridge && npm run build",
"prebuild": "npm run build:bridge",
"pack": "npm run build:all && node scripts/pack-extension.js"
},
"dependencies": {
"diff-match-patch": "^1.0.5",
"katex": "^0.16.27",
"lucide-react": "^0.563.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.7.0",
"@types/chrome": "^0.0.258",
"@types/diff-match-patch": "^1.0.36",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@vitejs/plugin-react": "^4.7.0",
"esbuild": "^0.28.1",
"sharp": "^0.34.5",
"typescript": "^5.3.3",
"vite": "^6.4.3"
}
}