-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.3 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
{
"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",
"typecheck": "tsc --noEmit",
"sync": "vite build && cap sync ios && git -C ../../opensource/zennotes rev-parse HEAD > .zennotes-commit",
"upstream": "sh tooling/upstream-check.sh",
"ios": "vite build && cap sync ios && cap open ios"
},
"dependencies": {
"@capacitor/app": "^7.0.1",
"@capacitor/clipboard": "^7.0.1",
"@capacitor/core": "^7.4.2",
"@capacitor/filesystem": "^7.1.2",
"@capacitor/haptics": "^7.0.1",
"@capacitor/ios": "^7.4.2",
"@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.7.1",
"@codemirror/lang-markdown": "^6.3.1",
"@codemirror/language": "^6.10.6",
"@codemirror/language-data": "^6.5.1",
"@codemirror/search": "^6.5.8",
"@codemirror/state": "^6.5.0",
"@codemirror/view": "^6.35.3",
"@lezer/highlight": "^1.2.1",
"@replit/codemirror-vim": "^6.3.0",
"codemirror": "^6.0.1",
"dompurify": "^3.3.4",
"function-plot": "^1.25.3",
"gray-matter": "^4.0.3",
"highlight.js": "^11.10.0",
"jsxgraph": "^1.12.2",
"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",
"zustand": "^5.0.2"
},
"devDependencies": {
"@capacitor/cli": "^7.4.2",
"@types/node": "^22.10.5",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.10",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vite": "^5.4.11"
}
}