-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 4.09 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 4.09 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "LLocal",
"version": "1.0.0-beta.13",
"description": "Llocal is a client application to utilize locally installed LLM's.",
"main": "./out/main/index.js",
"author": "Kartikeya Mishra",
"license": "MIT",
"homepage": "https://llocal.in",
"repository": {
"type": "git",
"url": "https://github.com/kartikm7/llocal"
},
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac:arm": "electron-vite build && electron-builder --mac --arm64",
"build:mac:intel": "electron-vite build && electron-builder --mac --x64",
"build:linux": "electron-vite build && electron-builder --linux",
"build:win:release": "npm run build && electron-builder --win --publish always",
"build:mac:arm:release": "electron-vite build && electron-builder --mac --arm64 --publish always",
"build:mac:intel:release": "electron-vite build && electron-builder --mac --x64 --publish always",
"build:linux:release": "electron-vite build && electron-builder --linux --publish always"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.0",
"@electron-toolkit/utils": "^3.0.0",
"@guyplusplus/turndown-plugin-gfm": "^1.0.7",
"@hookform/resolvers": "^3.6.0",
"@langchain/community": "^0.3.55",
"@langchain/core": "^0.3.75",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@swc/core": "^1.5.7",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/turndown": "^5.0.5",
"axios": "^1.6.8",
"cheerio": "^1.0.0-rc.12",
"cheminfo-types": "^1.7.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"d3-dsv": "^2.0.0",
"duck-duck-scrape": "^2.2.5",
"faiss-node": "^0.5.1",
"google-sr": "^5.0.0",
"i18next": "^25.0.1",
"i18next-fs-backend": "^2.6.0",
"install": "^0.13.0",
"jotai": "^2.8.0",
"kokoro-js": "https://gitpkg.vercel.app/kartikm7/kokoro/kokoro.js?main_with_build",
"langchain": "^0.3.33",
"localbase": "https://github.com/kartikm7/localbase",
"mammoth": "^1.8.0",
"mermaid": "^11.4.1",
"modern-screenshot": "^4.5.5",
"node-fetch": "^3.3.2",
"npm": "^10.8.2",
"officeparser": "^4.1.1",
"ollama": "^0.5.17",
"open": "^10.1.0",
"pdf-parse": "^1.1.1",
"pickleparser": "^0.2.1",
"puppeteer-core": "^24.4.0",
"puppeteer-in-electron": "^3.0.5",
"react-copy-to-clipboard": "^5.1.0",
"react-hook-form": "^7.51.4",
"react-icons": "^5.2.1",
"react-loading-skeleton": "^3.4.0",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.6.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"shell-path": "^3.0.0",
"sonner": "^1.4.41",
"tailwind-merge": "^2.3.0",
"turndown": "^7.2.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^2.0.0",
"@electron-toolkit/eslint-config-ts": "^1.0.1",
"@electron-toolkit/tsconfig": "^1.0.1",
"@types/i18next": "^12.1.0",
"@types/node": "^18.19.9",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"electron": "^28.2.0",
"electron-builder": "^24.9.1",
"electron-updater": "^6.1.7",
"electron-vite": "^2.0.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"postcss": "^8.4.38",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.6.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.3.3",
"vite": "^5.0.12"
}
}