-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.43 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
79
80
81
82
83
{
"name": "mark-cell",
"version": "0.4.9",
"license": "LGPL-3.0",
"author": "shiy2008@gmail.com",
"description": "General MDX to TSX/HTML converter, inspired by Hexo & Gatsby",
"keywords": [
"mdx",
"tsx",
"jsx",
"converter",
"generator",
"react",
"web-cell",
"hexo",
"gatsby"
],
"homepage": "https://web-cell.dev/MarkCell/",
"repository": {
"type": "git",
"url": "git+https://github.com/EasyWebApp/MarkCell.git"
},
"bugs": {
"url": "https://github.com/EasyWebApp/MarkCell/issues"
},
"bin": "dist/index.js",
"engines": {
"node": ">= 10.0.0"
},
"dependencies": {
"commander": "^6.2.1",
"jsdom": "^19.0.0",
"mdast-util-to-hast": "^9.1.2",
"prismjs": "^1.26.0",
"regenerator-runtime": "^0.13.9",
"rehype-parse": "^7.0.1",
"remark-frontmatter": "^2.0.0",
"remark-mdx": "^1.6.22",
"remark-parse": "^8.0.3",
"remark-stringify": "^8.1.1",
"toml": "^3.0.0",
"ts-node": "^10.4.0",
"ts-transform-asset": "^3.1.0",
"ts-transform-css-modules": "^0.3.3",
"ttypescript": "^1.5.13",
"typescript": "~4.3.5",
"unified": "^9.2.2",
"web-cell": "^2.3.0",
"web-utility": "^3.0.0",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/jsdom": "^16.2.14",
"@types/node": "^14.18.10",
"@types/prismjs": "^1.26.0",
"@types/yaml": "^1.9.7",
"element-internals-polyfill": "^0.1.54",
"husky": "^7.0.4",
"koapache": "^2.2.1",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"snabbdom": "^2.1.0",
"typedoc": "^0.22.11"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4
},
"lint-staged": {
"*.{md,mdx,json,ts,tsx}": "prettier --write"
},
"scripts": {
"lint": "lint-staged",
"build": "rm -rf dist/ && tsc",
"debug": "cd test/ && rm -rf dist/ public/ && node ../dist/ source/ -p web-cell -f createCell -l layout/",
"test": "npm run build && npm run debug",
"start": "npm run debug && web-server test/public/ -o",
"pack-docs": "typedoc source/",
"prepublishOnly": "npm run lint && npm test && npm run pack-docs"
}
}