-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 943 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 943 Bytes
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
{
"name": "cherit",
"license": "GPL-2.0",
"private": true,
"workspaces": [
"apps/*"
],
"scripts": {
"dev": "bun run dev --workspace app-tauri",
"build": "bun run build --workspace app-tauri",
"dev:website": "bun run dev --workspace website",
"build:website": "bun run build --workspace website",
"format": "prettier --write .",
"check-format": "prettier --check ."
},
"devDependencies": {
"prettier": "^3.7.4",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^3.4.1"
},
"dependencies": {
"@codemirror/commands": "^6.10.1",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language": "^6.12.1",
"@codemirror/language-data": "^6.5.2",
"@codemirror/state": "^6.5.3",
"@codemirror/view": "^6.39.11",
"@lezer/markdown": "^1.6.3",
"@prosemark/core": "^0.0.4",
"@prosemark/render-html": "^0.0.5",
"@tauri-apps/api": "^2.10.1"
}
}