mirror of
https://github.com/mayurankv/Obsidian-Code-Styler.git
synced 2026-07-22 08:10:29 +00:00
63 lines
2.2 KiB
JSON
63 lines
2.2 KiB
JSON
{
|
|
"name": "code-styler",
|
|
"version": "1.1.2",
|
|
"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": "^20.10.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.12.0",
|
|
"@typescript-eslint/parser": "^6.12.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.19.7",
|
|
"eslint": "^8.54.0",
|
|
"eslint-plugin-json": "^3.1.0",
|
|
"obsidian": "latest",
|
|
"stylelint": "^15.11.0",
|
|
"stylelint-config-idiomatic-order": "^9.0.0",
|
|
"stylelint-config-standard": "^34.0.0",
|
|
"stylelint-declaration-block-no-ignored-properties": "^2.7.0",
|
|
"stylelint-gamut": "^1.3.3",
|
|
"stylelint-high-performance-animation": "^1.9.0",
|
|
"stylelint-no-browser-hacks": "^1.2.1",
|
|
"stylelint-no-nested-media": "^0.1.0",
|
|
"stylelint-no-unsupported-browser-features": "^7.0.0",
|
|
"stylelint-order": "^6.0.3",
|
|
"stylelint-plugin-defensive-css": "^0.10.2",
|
|
"stylelint-stylistic": "^0.4.3",
|
|
"stylelint-use-logical-spec": "^5.0.0",
|
|
"tslib": "2.6.2",
|
|
"typescript": "5.3.2",
|
|
"vitest": "^0.34.6"
|
|
},
|
|
"dependencies": {
|
|
"@codemirror/language": "github:lishid/cm-language",
|
|
"@codemirror/language-data": "^6.3.1",
|
|
"@codemirror/view": "^6.22.0",
|
|
"@lezer/common": "^1.1.1",
|
|
"@lezer/highlight": "^1.2.0",
|
|
"@simonwep/pickr": "^1.9.0",
|
|
"colortranslator": "^3.0.2",
|
|
"hast-util-from-html": "^2.0.1",
|
|
"hast-util-to-html": "^9.0.0",
|
|
"unist-util-visit-parents": "^6.0.1"
|
|
},
|
|
"contributors": [
|
|
"Mayuran Visakan <mayuran.k.v@gmail.com>",
|
|
"mugiwara85 <65603765+mugiwara85@users.noreply.github.com>",
|
|
"Zsolt Szalai <kampimester@gmail.com>",
|
|
"Dimava <dimava2@ya.ru>",
|
|
"Michael Naumov <mnaoumov@gmail.com>"
|
|
]
|
|
}
|