1{
2 "name": "markdown-preview",
3 "version": "0.0.10",
4 "description": "markdown preview plugin for (neo)vim",
5 "bin": "./app/server.js",
6 "repository": "https://github.com/iamcco/markdown-preview.nvim.git",
7 "author": "年糕小豆汤 <ooiss@qq.com>",
8 "license": "MIT",
9 "private": true,
10 "scripts": {
11 "watch": "tsc -w -p ./",
12 "build-app": "cd app && rm -rf ./.next && next build && next export",
13 "build-lib": "tsc -p ./",
14 "build": "tsc -p ./ && cd app && rm -rf ./.next && next build && next export && yarn && pkg --targets node16-linux-x64,node16-macos-x64,node16-win-x64 --out-path ./bin . && rm -rf ./node_modules ./.next"
15 },
16 "dependencies": {
17 "@chemzqm/neovim": "^5.7.9",
18 "chart.js": "^2.7.3",
19 "highlight.js": "^10.4.1",
20 "log4js": "^6.4.0",
21 "markdown-it": "^12.3.2",
22 "markdown-it-anchor": "^5.2.4",
23 "markdown-it-deflist": "^2.0.3",
24 "markdown-it-emoji": "^1.4.0",
25 "markdown-it-footnote": "^3.0.1",
26 "markdown-it-task-lists": "^2.1.1",
27 "markdown-it-toc-done-right": "^4.0.1",
28 "md-it-meta": "^0.0.2",
29 "msgpack-lite": "^0.1.26",
30 "next": "^7.0.2",
31 "next-routes": "^1.4.2",
32 "plantuml-encoder": "^1.4.0",
33 "react": "^16.5.2",
34 "react-dom": "^16.5.2",
35 "socket.io": "^2.1.1",
36 "socket.io-client": "^2.1.1"
37 },
38 "devDependencies": {
39 "@types/node": "16",
40 "pkg": "^5.6.0",
41 "prettier": "^2.6.2",
42 "tslint": "^6.1.3",
43 "tslint-config-prettier": "^1.18.0",
44 "tslint-plugin-prettier": "^2.3.0",
45 "typescript": "^4.6.4",
46 "yuuko-tsconfig": "^1.0.0"
47 }
48}