|
3 | 3 | "private": true, |
4 | 4 | "version": "0.2.0", |
5 | 5 | "type": "module", |
| 6 | + "description": "TrustyNotes is a simple, secure, and reliable note-taking app", |
| 7 | + "author": "Toolworks.dev", |
6 | 8 | "scripts": { |
7 | 9 | "dev": "vite", |
8 | 10 | "build": "tsc && vite build", |
9 | 11 | "preview": "vite preview", |
| 12 | + "build:electron": "cross-env ELECTRON=true tsc && vite build && node desktop/build.js", |
| 13 | + "start:electron": "cd desktop && electron .", |
| 14 | + "dev:electron": "concurrently \"vite\" \"cd desktop && cross-env NODE_ENV=development electron .\"", |
10 | 15 | "build:chrome": "bun browser-extension/build.js chrome", |
11 | | - "build:firefox": "bun browser-extension/build.js firefox" |
| 16 | + "build:firefox": "bun browser-extension/build.js firefox", |
| 17 | + "dist:linux": "bun run build:electron && cd desktop && bun run build:linux", |
| 18 | + "dist:windows": "bun run build:electron && cd desktop && bun run build:windows", |
| 19 | + "dist:all": "bun run build:electron && cd desktop && bun run build:all" |
12 | 20 | }, |
13 | 21 | "dependencies": { |
14 | 22 | "@capacitor/android": "^6.2.0", |
|
21 | 29 | "@capacitor/splash-screen": "^6.0.3", |
22 | 30 | "@capacitor/status-bar": "^6.0.2", |
23 | 31 | "@emotion/react": "^11.14.0", |
24 | | - "@mantine/core": "^7.15.2", |
25 | | - "@mantine/hooks": "^7.15.2", |
26 | | - "@mantine/notifications": "^7.15.2", |
27 | | - "@noble/ed25519": "^2.1.0", |
28 | | - "@tabler/icons-react": "^3.26.0", |
29 | | - "@tiptap/extension-code-block": "^2.10.4", |
30 | | - "@tiptap/extension-highlight": "^2.10.4", |
31 | | - "@tiptap/extension-image": "^2.10.4", |
32 | | - "@tiptap/extension-link": "^2.10.4", |
33 | | - "@tiptap/extension-table": "^2.10.4", |
34 | | - "@tiptap/extension-table-cell": "^2.10.4", |
35 | | - "@tiptap/extension-table-header": "^2.10.4", |
36 | | - "@tiptap/extension-table-row": "^2.10.4", |
37 | | - "@tiptap/extension-text-align": "^2.10.4", |
38 | | - "@tiptap/pm": "^2.10.4", |
39 | | - "@tiptap/react": "^2.10.4", |
40 | | - "@tiptap/starter-kit": "^2.10.4", |
| 32 | + "@mantine/core": "^7.16.2", |
| 33 | + "@mantine/hooks": "^7.16.2", |
| 34 | + "@mantine/notifications": "^7.16.2", |
| 35 | + "@noble/ed25519": "^2.2.3", |
| 36 | + "@tabler/icons-react": "^3.29.0", |
| 37 | + "@tiptap/extension-code-block": "^2.11.5", |
| 38 | + "@tiptap/extension-highlight": "^2.11.5", |
| 39 | + "@tiptap/extension-image": "^2.11.5", |
| 40 | + "@tiptap/extension-link": "^2.11.5", |
| 41 | + "@tiptap/extension-table": "^2.11.5", |
| 42 | + "@tiptap/extension-table-cell": "^2.11.5", |
| 43 | + "@tiptap/extension-table-header": "^2.11.5", |
| 44 | + "@tiptap/extension-table-row": "^2.11.5", |
| 45 | + "@tiptap/extension-text-align": "^2.11.5", |
| 46 | + "@tiptap/pm": "^2.11.5", |
| 47 | + "@tiptap/react": "^2.11.5", |
| 48 | + "@tiptap/starter-kit": "^2.11.5", |
41 | 49 | "@types/highlight.js": "^10.1.0", |
42 | 50 | "bip39": "^3.1.0", |
43 | 51 | "browserify-zlib": "^0.2.0", |
44 | 52 | "buffer": "^6.0.3", |
| 53 | + "crossenv": "^0.0.2-security", |
45 | 54 | "date-fns": "^4.1.0", |
46 | | - "highlight.js": "^11.11.0", |
| 55 | + "highlight.js": "^11.11.1", |
47 | 56 | "process": "^0.11.10", |
48 | 57 | "react": "^18.3.1", |
49 | 58 | "react-dom": "^18.3.1", |
50 | | - "react-markdown": "^9.0.1", |
| 59 | + "react-markdown": "^9.0.3", |
51 | 60 | "rehype-highlight": "^7.0.1", |
52 | 61 | "rehype-raw": "^7.0.0", |
53 | 62 | "remark-gfm": "^4.0.0", |
54 | 63 | "stream-browserify": "^3.0.0", |
55 | 64 | "util": "^0.12.5" |
56 | 65 | }, |
57 | 66 | "devDependencies": { |
| 67 | + "electron": "^34.0.2", |
| 68 | + "electron-builder": "^25.1.8", |
58 | 69 | "@types/react": "^18.3.18", |
59 | 70 | "@types/react-dom": "^18.3.5", |
60 | 71 | "@vitejs/plugin-react": "^4.3.4", |
61 | | - "typescript": "^5.7.2", |
62 | | - "vite": "^5.4.11" |
| 72 | + "typescript": "^5.7.3", |
| 73 | + "vite": "^5.4.14", |
| 74 | + "concurrently": "^8.2.2", |
| 75 | + "cross-env": "^7.0.3" |
63 | 76 | } |
64 | 77 | } |
0 commit comments