-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
77 lines (77 loc) · 2.12 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
{
"name": "obsidian-obsidian-prettify",
"author": "Cristian",
"license": "GPL-3.0-or-later",
"type": "module",
"bugs": {
"url": "https://github.com/cristianvasquez/obsidian-prettify/issues"
},
"version": "0.1.3",
"description": "Prettifies your markdown!",
"main": "index.js",
"scripts": {
"dev": "rollup --config rollup.config.js -w --configDebug",
"build_dev": "rollup --config rollup.config.js --configDebug",
"build": "rollup --config rollup.config.js",
"test": "jest",
"test-update": "jest --updateSnapshot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cristianvasquez/obsidian-prettify.git"
},
"dependencies": {
"@types/mdast": "^3.0.3",
"@types/unist": "^2.0.0",
"global": "^4.4.0",
"js-yaml": "^4.0.0",
"mdast-util-wiki-link": "^0.0.1",
"micromark-extension-wiki-link": "^0.0.4",
"moment": "^2.29.1",
"remark": "^13.0.0",
"remark-frontmatter": "^3.0.0",
"remark-gfm": "^1.0.0",
"remark-images": "^2.0.0",
"remark-math": "^4.0.0",
"remark-parse": "^9.0.0",
"remark-wiki-link": "^1.0.2",
"uuid": "^8.3.2",
"zwitch": "^1.0.5"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@types/jest": "^26.0.22",
"@types/js-yaml": "^4.0.0",
"@types/uuid": "^8.3.1",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"obsidian": "https://github.com/obsidianmd/obsidian-api/tarball/master",
"rollup": "^2.32.1",
"rollup-plugin-babel": "^4.4.0",
"to-vfile": "^6.1.0",
"ts-jest": "^26.5.5",
"tslib": "^2.0.3",
"typescript": "^4.2.4"
},
"keywords": [
"obsidian-md",
"fix",
"format",
"formatting",
"markdown",
"md",
"pretty",
"reformat",
"styleguide",
"tables",
"obsidian-prettify",
"prettify-markdown"
],
"homepage": "https://github.com/cristianvasquez/obsidian-prettify#readme"
}