-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.37 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
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
{
"name": "markdown-preview",
"productName": "Markdown Preview",
"private": true,
"version": "v1.0.0-beta.2",
"description": "Markdown editor with preview.",
"author": {
"name": "Luis Gabriel J.",
"email": "janco7249@gmail.com",
"url": "https://github.com/LuiSauter"
},
"bugs": {
"url": "https://github.com/Simply-Markdown/markdown-preview/issues"
},
"homepage": "https://github.com/Simply-Markdown/markdown-preview/blob/main/README.md",
"repository": {
"type": "git",
"url": "git+git@github.com:Simply-Markdown/markdown-preview.git"
},
"license": "MIT",
"main": "dist/main/index.cjs",
"scripts": {
"build": "node scripts/build.mjs",
"dev": "node scripts/watch.mjs",
"compile": "electron-builder build --config electron-builder.config.js --config.asar=false",
"lint": "eslint . --ext js,ts --fix"
},
"engines": {
"node": ">=14.17.0"
},
"dependencies": {
"@codemirror/commands": "^0.19.1",
"@codemirror/gutter": "^0.19.0",
"@codemirror/highlight": "^0.19.1",
"@codemirror/history": "^0.19.0",
"@codemirror/lang-javascript": "^0.19.1",
"@codemirror/lang-markdown": "^0.19.1",
"@codemirror/language": "^0.19.2",
"@codemirror/language-data": "^0.19.0",
"@codemirror/matchbrackets": "^0.19.1",
"@codemirror/state": "^0.19.0",
"@codemirror/theme-one-dark": "^0.19.0",
"assert": "^2.0.0",
"electron-store": "8.0.1",
"electron-updater": "5.0.5",
"github-markdown-css": "^5.1.0",
"process": "^0.11.10",
"rehype-react": "^7.1.1",
"remark-gfm": "^2.0.0",
"remark-parse": "^10.0.0",
"remark-rehype": "^10.1.0",
"unified": "^10.1.2"
},
"devDependencies": {
"@types/electron-devtools-installer": "2.2.2",
"@types/node": "^18.0.3",
"@types/react": "18.0.12",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "5.30.0",
"@typescript-eslint/parser": "5.30.0",
"@vitejs/plugin-react": "1.3.2",
"electron": "22.3.25",
"electron-builder": "23.0.3",
"electron-devtools-installer": "3.2.0",
"eslint": "8.18.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-react": "7.30.1",
"react": "18.1.0",
"react-dom": "18.1.0",
"typescript": "4.7.3",
"vite": "2.9.17",
"vite-plugin-electron": "^0.6.1"
},
"env": {
"VITE_DEV_SERVER_HOST": "127.0.0.1",
"VITE_DEV_SERVER_PORT": 7777
}
}