-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 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
{
"name": "vitepress-markdown-timeline",
"version": "1.2.2",
"description": "在vitepress添加时间线(时间轴)渲染能力",
"main": "dist/cjs/index.cjs.js",
"module": "dist/es/index.es.js",
"types": "types/index.d.ts",
"sideEffects": false,
"homepage": "https://github.com/HanochMa/vitepress-markdown-timeline#readme",
"repository": {
"type": "git",
"url": "https://github.com/HanochMa/vitepress-markdown-timeline"
},
"keywords": [
"markdown",
"vitepress",
"markdonw-it",
"markdonw-it-plugin",
"timeline",
"vitepress-plugin",
"时间线",
"时间轴"
],
"license": "MIT",
"files": [
"dist/[^.]*",
"types/[^.]*",
"docs/[^.]*",
"doc/[^.]*"
],
"author": {
"name": "HanochMa"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -c -w",
"test": "node test/index.js",
"pretest": "npm run build"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^8.0.0",
"@types/markdown-it": "^14.1.2",
"@types/markdown-it-container": "^2.0.5",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.15.0",
"markdown-it": "^14.1.0",
"markdown-it-container": "^3.0.0",
"npm": "^9.6.7",
"package-tls": "^1.2.2",
"path": "^0.12.7",
"rimraf": "^5.0.1",
"rollup": "^2.35.1",
"rollup-plugin-css-only": "^4.3.0",
"rollup-plugin-import-css": "^3.2.1",
"ts-node": "^9.1.1",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
},
"dependencies": {
"dayjs": "^1.11.7"
}
}