-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathpackage.json
More file actions
196 lines (196 loc) · 9.57 KB
/
package.json
File metadata and controls
196 lines (196 loc) · 9.57 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
{
"name": "logseq",
"version": "0.0.1",
"private": true,
"packageManager": "yarn@1.22.22",
"main": "static/electron.js",
"engines": {
"node": ">=22.20.0"
},
"devDependencies": {
"@capacitor/assets": "^3.0.5",
"@capacitor/cli": "8.2.0",
"@jcesarmobile/ssl-skip": "^0.9.0",
"@playwright/test": "=1.58.2",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/forms": "0.5.11",
"@tailwindcss/typography": "0.5.19",
"autoprefixer": "^10.4.27",
"better-sqlite3": "^12.8.0",
"cross-env": "^10.1.0",
"cssnano": "^7.1.3",
"gulp": "^5.0.1",
"gulp-postcss": "^10.0.0",
"gulp-replace": "^1.1.4",
"npm-run-all2": "^8.0.4",
"playwright": "=1.58.2",
"postcss": "^8.5.8",
"postcss-cli": "11.0.1",
"postcss-import": "16.1.1",
"postcss-import-ext-glob": "2.1.1",
"postcss-nested": "7.0.2",
"process": "^0.11.10",
"semver": "7.7.4",
"shadow-cljs": "^3.4.4",
"source-map-loader": "^5.0.0",
"stylelint": "^13.8.0",
"stylelint-config-standard": "^20.0.0",
"tailwindcss": "3.3.5",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.3",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.2",
"ws": "^8.19.0"
},
"scripts": {
"watch": "run-p gulp:watch cljs:watch webpack-app-watch",
"electron-watch": "run-p gulp:watch cljs:electron-watch webpack-app-watch",
"app-watch": "run-p gulp:watch cljs:app-watch webpack-app-watch",
"mobile-watch": "run-p gulp:mobile-watch cljs:mobile-watch webpack-mobile-watch",
"dev": "run-p gulp:watch gulp:mobile-watch cljs:dev-watch webpack-watch",
"release": "run-s gulp:build cljs:release webpack-app-build",
"release-app": "run-s gulp:build cljs:release-app webpack-app-build",
"release-mobile": "run-s gulp:buildMobile cljs:release-mobile webpack-mobile-build",
"dev-release-app": "run-s gulp:build cljs:dev-release-app webpack-app-build",
"dev-electron-app": "gulp electron",
"release-electron": "run-s gulp:build && yarn webpack-app-build && gulp electronMaker",
"debug-electron": "cd static/ && yarn electron:debug",
"webpack-watch": "webpack --watch",
"webpack-app-watch": "npx webpack --watch --config-name app",
"webpack-mobile-watch": "npx webpack --watch --config-name mobile",
"webpack-app-build": "npx webpack build --mode production --config-name app",
"webpack-mobile-build": "npx webpack build --mode production --config-name mobile",
"sync-android-release": "yarn clean && yarn release-mobile && rm -rf ./static/mobile/**/*.map && npx cap sync android",
"sync-ios-release": "yarn clean && yarn release-mobile && rm -rf ./static/mobile/**/*.map && npx cap sync ios",
"clean": "gulp clean",
"test": "run-s cljs:test cljs:run-test",
"test:node-adapter": "yarn --cwd deps/db-sync test:node-adapter",
"report": "run-s cljs:report",
"style:lint": "stylelint \"src/**/*.css\"",
"gulp:watch": "gulp watch",
"gulp:build": "cross-env NODE_ENV=production gulp build",
"gulp:buildMobile": "cross-env NODE_ENV=production gulp buildMobile",
"css:build": "postcss tailwind.all.css -o static/css/style.css --verbose --env production",
"css:watch": "cross-env TAILWIND_MODE=watch postcss tailwind.all.css -o static/css/style.css --verbose --watch",
"cljs:watch": "clojure -M:cljs watch app db-worker electron",
"gulp:mobile-watch": "gulp watchMobile",
"css:mobile-build": "postcss tailwind.mobile.css -o static/mobile/css/style.css --verbose --env production",
"css:mobile-watch": "cross-env TAILWIND_MODE=watch postcss tailwind.mobile.css -o static/mobile/css/style.css --verbose --watch",
"cljs:mobile-watch": "clojure -M:cljs watch mobile db-worker --config-merge \"{:output-dir \\\"./static/mobile/js\\\" :asset-path \\\"/static/mobile/js\\\" :release {:asset-path \\\"http://localhost\\\"}}\"",
"cljs:release-mobile": "clojure -M:cljs release mobile db-worker --config-merge \"{:output-dir \\\"./static/mobile/js\\\" :asset-path \\\"/static/mobile/js\\\" :release {:asset-path \\\"http://localhost\\\"}}\"",
"cljs:dev-watch": "clojure -M:cljs watch app db-worker electron mobile",
"cljs:app-watch": "clojure -M:cljs watch app db-worker",
"cljs:electron-watch": "clojure -M:cljs watch app db-worker electron test --config-merge \"{:asset-path \\\"./js\\\"}\"",
"cljs:release": "clojure -M:cljs release app db-worker publishing electron",
"cljs:release-electron": "clojure -M:cljs release app db-worker electron --debug && clojure -M:cljs release publishing",
"cljs:release-app": "clojure -M:cljs release app db-worker",
"cljs:release-publishing": "clojure -M:cljs release app publishing",
"cljs:test": "clojure -M:test compile test",
"cljs:run-test": "node static/tests.js -r \"^(?!logseq.db-sync.).*\" -e fix-me",
"cljs:test-no-worker": "clojure -M:test compile test-no-worker",
"cljs:run-test-no-worker": "node static/tests-no-worker.js",
"cljs:dev-release-app": "clojure -M:cljs release app db-worker --config-merge \"{:closure-defines {frontend.config/DEV-RELEASE true}}\"",
"cljs:dev-release-electron": "clojure -M:cljs release app db-worker electron --debug --config-merge \"{:closure-defines {frontend.config/DEV-RELEASE true}}\" && clojure -M:cljs release publishing",
"cljs:debug": "clojure -M:cljs release app db-worker --debug",
"cljs:report": "clojure -M:cljs run shadow.cljs.build-report app db-worker report.html",
"cljs:build-electron": "clojure -A:cljs compile app db-worker electron",
"cljs:lint": "clojure -M:clj-kondo --parallel --lint src --cache false",
"ios:dev": "cross-env PLATFORM=ios gulp cap",
"android:dev": "cross-env PLATFORM=android gulp cap",
"ui:build": "yarn --cwd packages/ui install",
"postinstall": "yarn ui:build"
},
"dependencies": {
"@aparajita/capacitor-secure-storage": "^8.0.0",
"@capacitor-community/safe-area": "8.0.1",
"@capacitor/action-sheet": "8.1.0",
"@capacitor/android": "8.2.0",
"@capacitor/app": "8.0.1",
"@capacitor/camera": "8.0.2",
"@capacitor/clipboard": "^8.0.1",
"@capacitor/core": "8.2.0",
"@capacitor/device": "^8.0.1",
"@capacitor/dialog": "^8.0.1",
"@capacitor/filesystem": "8.1.2",
"@capacitor/haptics": "8.0.1",
"@capacitor/ios": "8.2.0",
"@capacitor/keyboard": "8.0.1",
"@capacitor/network": "^8.0.1",
"@capacitor/share": "8.0.1",
"@capacitor/splash-screen": "8.0.1",
"@capacitor/status-bar": "8.0.1",
"@capgo/capacitor-navigation-bar": "^8.0.25",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@emoji-mart/data": "^1.2.1",
"@emoji-mart/react": "^1.1.1",
"@glidejs/glide": "^3.7.1",
"@highlightjs/cdn-assets": "11.11.1",
"@isomorphic-git/lightning-fs": "^4.6.2",
"@js-joda/core": "3.2.0",
"@js-joda/locale_en-us": "3.1.1",
"@js-joda/timezone": "2.5.0",
"@logseq/react-tweet-embed": "1.3.1-1",
"@logseq/simple-wave-record": "^0.0.3",
"@radix-ui/colors": "^3.0.0",
"@sentry/react": "^10.45.0",
"@sqlite.org/sqlite-wasm": "^3.51.2-build8",
"@tabler/icons-react": "2.47.0",
"bignumber.js": "^9.3.1",
"chrono-node": "2.9.0",
"codemirror": "5.65.18",
"comlink": "^4.4.2",
"d3-force": "3.0.0",
"dompurify": "^3.3.3",
"emoji-mart": "^5.6.0",
"fs": "0.0.1-security",
"fs-extra": "^11.3.4",
"fuse.js": "7.1.0",
"graphology": "0.20.0",
"html2canvas": "^1.4.1",
"inter-ui": "^4.1.1",
"interactjs": "^1.10.27",
"jszip": "3.10.1",
"katex": "^0.16.40",
"marked": "^17.0.5",
"mldoc": "^1.5.9",
"path": "0.12.7",
"path-complete-extname": "1.0.0",
"pdfjs-dist": "4.2.67",
"photoswipe": "^5.4.4",
"pixi-graph-fork": "0.2.0",
"pixi.js": "6.2.0",
"posthog-js": "1.10.0",
"prop-types": "^15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-intersection-observer": "^10.0.3",
"react-textarea-autosize": "8.5.9",
"react-transition-group": "4.4.5",
"react-virtuoso": "4.18.3",
"remove-accents": "0.5.0",
"sanitize-filename": "1.6.4",
"send-intent": "^7.0.0",
"url": "^0.11.4",
"util": "^0.12.5"
},
"resolutions": {
"pixi-graph-fork/@pixi/app": "6.2.0",
"pixi-graph-fork/@pixi/constants": "6.2.0",
"pixi-graph-fork/@pixi/core": "6.2.0",
"pixi-graph-fork/@pixi/display": "6.2.0",
"pixi-graph-fork/@pixi/graphics": "6.2.0",
"pixi-graph-fork/@pixi/interaction": "6.2.0",
"pixi-graph-fork/@pixi/loaders": "6.2.0",
"pixi-graph-fork/@pixi/ticker": "6.2.0",
"pixi-graph-fork/@pixi/sprite": "6.2.0",
"pixi-graph-fork/@pixi/text": "6.2.0",
"pixi-graph-fork/@pixi/text-bitmap": "6.2.0",
"pixi-graph-fork/@pixi/utils": "6.2.0",
"pixi-graph-fork/@pixi/runner": "6.2.0",
"pixi-graph-fork/@pixi/mesh": "6.2.0",
"pixi-graph-fork/@pixi/settings": "6.2.0",
"pixi-graph-fork/@pixi/mixin-get-child-by-name": "6.2.0",
"pixi-graph-fork/@pixi/math": "6.2.0"
}
}