-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.24 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.24 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
{
"name": "zennotes-iphone",
"private": true,
"version": "0.1.0",
"type": "module",
"description": "ZenNotes for iPhone — Capacitor shell over the ZenNotes app core",
"homepage": "https://zennotes.org",
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "node --test",
"e2e:cloud": "node tooling/cloud-direct-upload-e2e.mjs",
"typecheck": "tsc --noEmit",
"sync": "npm run build && cap sync ios",
"upstream": "npm run boundaries:check && npm run typecheck",
"ios": "npm run build && cap sync ios && cap open ios",
"boundaries:check": "node tooling/check-core-boundary.mjs",
"build:boundary-fixture": "node tooling/build-native-boundary-fixture.mjs"
},
"dependencies": {
"@aparajita/capacitor-secure-storage": "7.1.6",
"@capacitor/app": "^7.0.1",
"@capacitor/clipboard": "^7.0.1",
"@capacitor/core": "^7.6.9",
"@capacitor/filesystem": "^7.1.2",
"@capacitor/haptics": "^7.0.1",
"@capacitor/ios": "^7.6.9",
"@capacitor/keyboard": "^7.0.1",
"@capacitor/preferences": "^7.0.1",
"@capacitor/share": "^7.0.1",
"@capacitor/splash-screen": "^7.0.1",
"@capacitor/status-bar": "^7.0.1",
"@codemirror/autocomplete": "^6.18.3",
"@codemirror/commands": "^6.11.0",
"@codemirror/lang-markdown": "^6.5.2",
"@codemirror/language": "^6.10.6",
"@codemirror/language-data": "^6.5.1",
"@codemirror/search": "^6.7.2",
"@codemirror/state": "^6.7.4",
"@codemirror/view": "^6.43.11",
"@lezer/highlight": "^1.2.1",
"@replit/codemirror-vim": "^6.4.0",
"@xyflow/react": "^12.11.6",
"codemirror": "^6.0.1",
"dompurify": "^3.4.15",
"function-plot": "^1.25.3",
"gray-matter": "^4.0.3",
"highlight.js": "^11.12.0",
"jsxgraph": "^1.13.3",
"katex": "^0.16.15",
"mermaid": "^11.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rehype-highlight": "^7.0.1",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.1",
"remark-breaks": "^4.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"vscode-oniguruma": "^2.0.1",
"vscode-textmate": "^9.3.2",
"zustand": "^5.0.15",
"@zennotes/app-core": "file:vendor/zennotes/zennotes-app-core-2.53.0-core.h598c8d004c9228a3.tgz",
"@zennotes/shared-domain": "file:vendor/zennotes/zennotes-shared-domain-2.53.0-boundaries.h193dbe157c4e64d2.tgz",
"@zennotes/bridge-contract": "file:vendor/zennotes/zennotes-bridge-contract-2.53.0-boundaries.h193dbe157c4e64d2.tgz",
"@lezer/common": "^1.5.2"
},
"devDependencies": {
"@capacitor/cli": "^7.6.9",
"@types/node": "^22.20.2",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^6.1.1",
"autoprefixer": "^10.6.0",
"harper.js": "^2.10.0",
"postcss": "^8.5.28",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vite": "^8.3.0",
"esbuild": "^0.28.2"
},
"overrides": {
"@excalidraw/excalidraw": {
"nanoid": "3.3.18"
},
"@excalidraw/mermaid-to-excalidraw": {
"@mermaid-js/parser": "1.2.1",
"nanoid": "5.1.16"
}
}
}