-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.92 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
{
"name": "remark-callouts",
"version": "2.0.0",
"description": "remark plugin to add support for blockquote-based admonitions/callouts",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"scripts": {
"build": "rollup -c",
"test": "mocha",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [
"remark-plugin",
"markdown",
"admonitions",
"callouts",
"remark",
"obsidian"
],
"author": "flowershow",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/flowerhow/remark-callouts"
},
"bugs": {
"url": "https://github.com/flowerhow/remark-callouts/issues"
},
"homepage": "https://github.com/flowerhow/remark-callouts#readme",
"type": "module",
"files": [
"dist"
],
"exports": {
".": "./dist/index.js",
"./styles.css": "./dist/styles.css"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@types/chai": "^4.3.1",
"@types/mdast": "^3.0.10",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.35",
"@types/svg-parser": "^2.0.3",
"@types/unist": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"chai": "^4.3.6",
"css-select": "^5.1.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"htmlparser2": "^8.0.1",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"rehype-stringify": "^9.0.3",
"remark": "^14.0.2",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.8.0",
"typescript": "^4.7.2",
"unified": "^10.1.2"
},
"dependencies": {
"mdast-util-from-markdown": "^1.2.0",
"svg-parser": "^2.0.4",
"unist-util-visit": "^4.1.0"
}
}