generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpackage.json
80 lines (80 loc) · 2.88 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
{
"name": "obsidian-linter",
"version": "1.28.0",
"description": "Enforces consistent markdown styling for Obsidian (https://obsidian.md). It can be used to format YAML tags, aliases, arrays, and metadata; footnotes; headings; spacing; math blocks; regular markdown contents like list, italics, and bold styles; and more with the use of custom rule options as well.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"test": "jest",
"test-suite": "jest -t \"$1\"",
"docs": "node docs.js",
"translate": "npm run build && node translation-helper.js",
"compile": "npm run build && npm run docs && npm run lint && npm run test",
"lint": "eslint . --ext .ts --fix",
"clear-jest": "jest --clearCache",
"minify-css": "postcss src/styles.css -o styles.css"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/plugin-proposal-decorators": "^7.24.0",
"@babel/plugin-transform-class-properties": "^7.23.3",
"@babel/plugin-transform-private-methods": "^7.23.3",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.18.6",
"@codemirror/view": "^6.33.0",
"@jest/types": "^29.5.0",
"@types/async-lock": "^1.4.2",
"@types/diff": "^5.0.9",
"@types/diff-match-patch": "^1.0.32",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.11.28",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"babel-jest": "^29.3.1",
"babel-plugin-import-glob": "^2.0.0",
"builtin-modules": "^3.3.0",
"cssnano": "^7.0.6",
"esbuild": "^0.20.2",
"esbuild-plugin-import-glob": "^0.1.1",
"esbuild-plugin-replace": "^1.3.0",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-unicorn": "^51.0.1",
"jest": "^29.3.1",
"moment": "^2.30.1",
"obsidian": "^1.5.7-1",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"ts-node": "^10.9.2",
"tslib": "^2.4.1",
"typescript": "^5.4.2",
"unified-lint-rule": "^2.1.1"
},
"dependencies": {
"@popperjs/core": "^2.11.6",
"async-lock": "^1.4.1",
"diff-match-patch": "^1.0.5",
"js-yaml": "^4.1.0",
"loglevel": "^1.9.1",
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-frontmatter": "^2.0.1",
"mdast-util-gfm-footnote": "^2.0.0",
"mdast-util-gfm-task-list-item": "^2.0.0",
"mdast-util-math": "^3.0.0",
"micromark-extension-gfm-footnote": "^2.0.0",
"micromark-extension-gfm-task-list-item": "^2.0.1",
"micromark-extension-math": "^3.0.0",
"micromark-util-combine-extensions": "^2.0.0",
"moment-parseformat": "^4.0.0",
"quick-lru": "^7.0.0",
"ts-dedent": "^2.2.0",
"unist-util-visit": "^5.0.0"
}
}