-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
65 lines (65 loc) · 2.21 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
{
"name": "code-styler",
"version": "1.1.7",
"description": "This is a plugin for Obsidian (https://obsidian.md) which lets you style codeblocks and inline code in both editing mode and reading mode.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"update": "ncu -u && npm install && node manual-update.mjs",
"lint": "eslint --fix --max-warnings=0 src && stylelint --fix --max-warnings=0 src/styles.css src/css",
"test": "vitest",
"version": "node version-bump.mjs",
"rerelease": "node version-rerelease.mjs"
},
"keywords": [],
"author": "Mayuran Visakan",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.8.1",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"builtin-modules": "4.0.0",
"esbuild": "0.24.0",
"eslint": "^9.13.0",
"eslint-plugin-json": "^4.0.1",
"obsidian": "latest",
"stylelint": "^16.10.0",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"stylelint-gamut": "^1.3.4",
"stylelint-high-performance-animation": "^1.10.0",
"stylelint-no-browser-hacks": "^1.3.0",
"stylelint-no-nested-media": "^0.1.0",
"stylelint-no-unsupported-browser-features": "^8.0.1",
"stylelint-order": "^6.0.4",
"stylelint-plugin-defensive-css": "^1.0.4",
"stylelint-stylistic": "^0.4.5",
"stylelint-use-logical-spec": "^5.0.1",
"tslib": "2.8.0",
"typescript": "5.6.3",
"vitest": "^2.1.3"
},
"dependencies": {
"@codemirror/language": "github:lishid/cm-language",
"@codemirror/language-data": "^6.5.1",
"@codemirror/view": "^6.34.1",
"@lezer/common": "^1.2.3",
"@lezer/highlight": "^1.2.1",
"@simonwep/pickr": "^1.9.1",
"colortranslator": "^4.1.0",
"hast": "^1.0.0",
"hast-util-from-html": "^2.0.3",
"hast-util-to-html": "^9.0.3",
"request": "^2.88.2",
"unist-util-visit-parents": "^6.0.1"
},
"contributors": [
"Mayuran Visakan <[email protected]>",
"mugiwara85 <[email protected]>",
"Zsolt Szalai <[email protected]>",
"Dimava <[email protected]>",
"Michael Naumov <[email protected]>"
]
}