-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 817 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 817 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
{
"name": "cloudcli-reader-plugin",
"version": "0.4.1",
"private": true,
"type": "module",
"description": "CloudCLI plugin for reading and annotating markdown files from any device.",
"license": "MIT",
"scripts": {
"build": "vite build && tsc -p tsconfig.server.json",
"build:client": "vite build",
"build:server": "tsc -p tsconfig.server.json",
"dev": "vite build --watch",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"mermaid": "^11.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"typescript": "^5.5.0",
"vite": "^5.4.0"
}
}