-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.59 KB
/
package.json
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
{
"name": "markdown-stick-notes",
"version": "0.2.5",
"description": "Markdown Sticky Notes web extension",
"private": true,
"type": "module",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox --mv3",
"build": "wxt build",
"build:edge": "wxt build -b edge",
"build:firefox": "wxt build -b firefox --mv3",
"zip": "wxt zip",
"zip:edge": "wxt zip -b edge",
"zip:firefox": "wxt zip -b firefox --mv3",
"zip:all": "pnpm run zip && pnpm run zip:edge && pnpm run zip:firefox",
"compile": "tsc --noEmit",
"postinstall": "wxt prepare"
},
"dependencies": {
"@codemirror/lang-markdown": "^6.2.4",
"@codemirror/language-data": "^6.3.1",
"@codemirror/view": "^6.24.1",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.3",
"@mui/material": "^5.15.3",
"@uiw/codemirror-themes-all": "^4.21.21",
"@uiw/react-codemirror": "^4.21.21",
"@uiw/react-color": "^2.1.1",
"re-resizable": "^6.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.1.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.21.2",
"react-syntax-highlighter": "npm:@fengkx/[email protected]",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"rooks": "^7.14.1"
},
"devDependencies": {
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/react-syntax-highlighter": "^15.5.11",
"@vitejs/plugin-react": "^4.2.1",
"typescript": "^5.3.3",
"vite": "^5.4.9",
"wxt": "^0.19.13"
}
}