-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.53 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.53 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
{
"name": "Firewrite",
"version": "0.5.0",
"description": "An electron application for writing and editing text with a clean, minimalist interface with the assistance of AI.",
"homepage": "https://firewrite.app",
"author": "victor36max@gmail.com",
"type": "module",
"main": "./out/main/index.js",
"scripts": {
"build": "pnpm run typecheck && electron-vite build",
"build:linux": "electron-vite build && electron-builder --linux",
"build:mac": "electron-vite build && electron-builder --mac",
"build:unpack": "pnpm run build && electron-builder --dir",
"build:web": "vite build",
"build:win": "pnpm run build && electron-builder --win",
"dev": "electron-vite dev",
"dev:web": "vite --port 3000",
"format:check": "prettier --check ./src",
"format:write": "prettier --write ./src",
"postinstall": "electron-builder install-app-deps",
"lint": "eslint --cache ./src",
"start": "electron-vite preview",
"typecheck": "pnpm typecheck:node && pnpm run typecheck:web",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"electron-updater": "^6.3.9",
"lodash": "^4.17.23"
},
"devDependencies": {
"@ai-sdk/anthropic": "^3.0.23",
"@ai-sdk/azure": "^3.0.18",
"@ai-sdk/deepseek": "^2.0.11",
"@ai-sdk/google": "^3.0.13",
"@ai-sdk/openai": "^3.0.18",
"@ai-sdk/openai-compatible": "^2.0.18",
"@ai-sdk/xai": "^3.0.34",
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@lexical/code": "^0.39.0",
"@lexical/link": "^0.39.0",
"@lexical/list": "^0.39.0",
"@lexical/markdown": "^0.39.0",
"@lexical/react": "^0.39.0",
"@lexical/rich-text": "^0.39.0",
"@lexical/selection": "^0.39.0",
"@lexical/table": "^0.39.0",
"@lexical/utils": "^0.39.0",
"@lobehub/icons": "^2.38.0",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.11",
"@tanstack/react-query": "^5.83.0",
"@types/lodash": "^4.17.23",
"@types/mustache": "^4.2.6",
"@types/node": "^22.16.5",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.7.0",
"ai": "^6.0.49",
"clsx": "^2.1.1",
"electron": "^37.2.3",
"electron-builder": "^25.1.8",
"electron-vite": "^4.0.0",
"eslint": "^9.31.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"idb": "^8.0.3",
"lexical": "^0.39.0",
"mixpanel-browser": "^2.71.0",
"mustache": "^4.2.0",
"ollama-ai-provider-v2": "^1.5.0",
"prettier": "^3.6.2",
"react": "^19.1.0",
"react-aria": "^3.42.0",
"react-aria-components": "^1.11.0",
"react-dom": "^19.1.0",
"react-hot-toast": "^2.6.0",
"react-hotkeys-hook": "^5.1.0",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.6.6",
"react-textarea-autosize": "^8.5.9",
"rehype-external-links": "^3.0.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.3.1",
"tailwind-variants": "^2.1.0",
"tailwindcss": "^4.1.11",
"typescript": "^5.8.3",
"use-debounce": "^10.0.5",
"vite": "^7.0.5",
"zod": "^4.0.14",
"zustand": "^5.0.7"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"esbuild"
]
}
}