-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 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
{
"name": "@lint-md/parser",
"version": "0.0.14",
"description": "lint-md 的解析器,基于 remark 生态,将 Markdown 字符串转换成 AST",
"author": "yuzhanglong <loveyzl1123@gmail.com>",
"contributors": [
"hustcc <i@hust.cc>",
"yuzhanglong <loveyzl1123@gmail.com>"
],
"homepage": "https://github.com/lint-md",
"license": "MIT",
"main": "./dist/lint-md-parser.js",
"typings": "./dist/lint-md-parser.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"watch": "tsc -w",
"build": "rm -rf dist && pnpm run build:dist && pnpm run build:ts-declaration",
"build:dist": "webpack --config webpack.config.ts",
"build:ts-declaration": "tsc && api-extractor run --local --verbose",
"lint": "eslint --ext js,jsx,ts,tsx ./src",
"test": "jest"
},
"devDependencies": {
"@attachments/eslint-config": "^0.3.3",
"@microsoft/api-extractor": "^7.23.2",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.6",
"concurrently": "^7.1.0",
"eslint": "^8.26.0",
"jest": "^27.0.6",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^5.3.1",
"ts-jest": "^27.0.4",
"ts-loader": "^9.3.0",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@types/unist": "^2.0.6",
"mdast-util-gfm-autolink-literal": "^1.0.2",
"remark": "^14.0.2",
"remark-directive": "^2.0.1",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1"
}
}