-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.69 KB
/
package.json
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
{
"name": "trusty-notes-web",
"private": true,
"version": "0.2.0",
"type": "module",
"description": "TrustyNotes is a simple, secure, and reliable note-taking app",
"author": "Toolworks.dev",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"build:electron": "cross-env ELECTRON=true tsc && vite build && node desktop/build.js",
"start:electron": "cd desktop && electron .",
"dev:electron": "concurrently \"vite\" \"cd desktop && cross-env NODE_ENV=development electron .\"",
"build:chrome": "bun browser-extension/build.js chrome",
"build:firefox": "bun browser-extension/build.js firefox",
"dist:linux": "bun run build:electron && cd desktop && bun run build:linux",
"dist:windows": "bun run build:electron && cd desktop && bun run build:windows",
"dist:all": "bun run build:electron && cd desktop && bun run build:all"
},
"dependencies": {
"@capacitor/android": "^6.2.0",
"@capacitor/app": "^6.0.2",
"@capacitor/cli": "^6.2.0",
"@capacitor/core": "^6.2.0",
"@capacitor/ios": "^6.2.0",
"@capacitor/keyboard": "^6.0.3",
"@capacitor/preferences": "^6.0.3",
"@capacitor/splash-screen": "^6.0.3",
"@capacitor/status-bar": "^6.0.2",
"@emotion/react": "^11.14.0",
"@mantine/core": "^7.16.2",
"@mantine/hooks": "^7.16.2",
"@mantine/notifications": "^7.16.2",
"@noble/ed25519": "^2.2.3",
"@tabler/icons-react": "^3.29.0",
"@tiptap/extension-code-block": "^2.11.5",
"@tiptap/extension-highlight": "^2.11.5",
"@tiptap/extension-image": "^2.11.5",
"@tiptap/extension-link": "^2.11.5",
"@tiptap/extension-table": "^2.11.5",
"@tiptap/extension-table-cell": "^2.11.5",
"@tiptap/extension-table-header": "^2.11.5",
"@tiptap/extension-table-row": "^2.11.5",
"@tiptap/extension-text-align": "^2.11.5",
"@tiptap/pm": "^2.11.5",
"@tiptap/react": "^2.11.5",
"@tiptap/starter-kit": "^2.11.5",
"@types/highlight.js": "^10.1.0",
"bip39": "^3.1.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"crossenv": "^0.0.2-security",
"date-fns": "^4.1.0",
"highlight.js": "^11.11.1",
"process": "^0.11.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.3",
"rehype-highlight": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"stream-browserify": "^3.0.0",
"util": "^0.12.5"
},
"devDependencies": {
"electron": "^34.0.2",
"electron-builder": "^25.1.8",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "^5.7.3",
"vite": "^5.4.14",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3"
}
}