mirror of
https://github.com/mayurankv/Obsidian-Code-Styler.git
synced 2026-07-22 08:10:29 +00:00
73 lines
2.4 KiB
JSON
73 lines
2.4 KiB
JSON
{
|
|
"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.10.10",
|
|
"@typescript-eslint/eslint-plugin": "^8.22.0",
|
|
"@typescript-eslint/parser": "^8.22.0",
|
|
"builtin-modules": "4.0.0",
|
|
"esbuild": "^0.24.2",
|
|
"esbuild-sass-plugin": "^3.3.1",
|
|
"eslint": "^9.19.0",
|
|
"eslint-plugin-json": "^4.0.1",
|
|
"obsidian": "latest",
|
|
"sass": "^1.83.4",
|
|
"sass-migrator": "^2.3.1",
|
|
"stylelint": "^16.14.1",
|
|
"stylelint-config-idiomatic-order": "^10.0.0",
|
|
"stylelint-config-standard": "^37.0.0",
|
|
"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.3",
|
|
"stylelint-order": "^6.0.4",
|
|
"stylelint-plugin-defensive-css": "^1.0.4",
|
|
"stylelint-use-logical-spec": "^5.0.1",
|
|
"tslib": "2.8.1",
|
|
"typescript": "5.7.3",
|
|
"vitest": "^3.0.4"
|
|
},
|
|
"dependencies": {
|
|
"@codemirror/language": "github:lishid/cm-language",
|
|
"@codemirror/language-data": "^6.5.1",
|
|
"@codemirror/view": "^6.36.2",
|
|
"@lezer/common": "^1.2.3",
|
|
"@lezer/highlight": "^1.2.1",
|
|
"@simonwep/pickr": "^1.9.1",
|
|
"@stylistic/stylelint-plugin": "^3.1.1",
|
|
"@types/gsap": "^1.20.2",
|
|
"colortranslator": "^4.1.0",
|
|
"hast": "^1.0.0",
|
|
"hast-util-from-html": "^2.0.3",
|
|
"hast-util-to-html": "^9.0.4",
|
|
"lodash": "^4.17.21",
|
|
"remark-parse": "^11.0.0",
|
|
"request": "^2.88.2",
|
|
"shiki": "^2.1.0",
|
|
"unified": "^11.0.5",
|
|
"unist-util-visit-parents": "^6.0.1"
|
|
},
|
|
"contributors": [
|
|
"Mayuran Visakan <mayuran.k.v@gmail.com>",
|
|
"mugiwara85 <65603765+mugiwara85@forwardrs.noreply.github.com>",
|
|
"Zsolt Szalai <kampimester@gmail.com>",
|
|
"Dimava <dimava2@ya.ru>",
|
|
"Michael Naumov <mnaoumov@gmail.com>"
|
|
]
|
|
}
|