-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.73 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
{
"name": "md2wx",
"version": "3.1.2",
"scripts": {
"build": "babel src -d lib -x \".ts\" --source-maps && tsc",
"lint": "eslint --ext .js,.ts src/",
"typecheck": "tsc --noUnusedLocals"
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"dompurify": "^2.0.8",
"highlight.js": "^10.0.0",
"html-to-image": "^1.0.0",
"katex": "^0.12.0",
"marked": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@primer/css": "^14.3.0",
"@types/dompurify": "^2.0.1",
"@types/highlight.js": "^9.12.3",
"@types/katex": "^0.11.0",
"@types/marked": "^0.7.3",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"babel-plugin-preval": "^5.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"husky": "^4.2.3",
"lint-staged": "^10.1.2",
"prettier": "^2.0.2",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn lint && yarn typecheck"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"license": "MIT",
"description": "Convert Markdown to WeChat compatible HTML, rendered in GitHub flavor",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/eesast/md2wx.git"
},
"keywords": [
"wechat",
"markdown",
"latex",
"katex",
"github"
],
"author": "Rui Ying",
"bugs": {
"url": "https://github.com/eesast/md2wx/issues"
},
"homepage": "https://github.com/eesast/md2wx#readme"
}