mayurankv_Obsidian-Code-Styler/package.json

66 lines
2.2 KiB
JSON
Raw Permalink Normal View History

2023-01-25 20:38:33 +00:00
{
2023-07-07 18:08:14 +00:00
"name": "code-styler",
2024-02-23 13:31:57 +00:00
"version": "1.1.7",
2023-08-16 13:27:05 +00:00
"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.",
2023-01-25 20:38:33 +00:00
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
2023-08-20 17:29:40 +00:00
"update": "ncu -u && npm install && node manual-update.mjs",
2023-08-11 14:01:29 +00:00
"lint": "eslint --fix --max-warnings=0 src && stylelint --fix --max-warnings=0 src/styles.css src/css",
2023-09-02 13:43:05 +00:00
"test": "vitest",
2023-08-30 19:34:56 +00:00
"version": "node version-bump.mjs",
"rerelease": "node version-rerelease.mjs"
2023-01-25 20:38:33 +00:00
},
"keywords": [],
2023-07-07 18:08:14 +00:00
"author": "Mayuran Visakan",
2023-01-25 20:38:33 +00:00
"license": "MIT",
"devDependencies": {
2024-10-27 17:10:27 +00:00
"@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",
2023-01-25 20:38:33 +00:00
"obsidian": "latest",
2024-10-27 17:10:27 +00:00
"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",
2023-08-15 12:57:35 +00:00
"stylelint-no-nested-media": "^0.1.0",
2024-10-27 17:10:27 +00:00
"stylelint-no-unsupported-browser-features": "^8.0.1",
"stylelint-order": "^6.0.4",
"stylelint-plugin-defensive-css": "^1.0.4",
"stylelint-use-logical-spec": "^5.0.1",
"tslib": "2.8.0",
"typescript": "5.6.3",
"vitest": "^2.1.3"
2023-01-25 22:56:55 +00:00
},
"dependencies": {
2023-07-10 19:47:28 +00:00
"@codemirror/language": "github:lishid/cm-language",
2024-10-27 17:10:27 +00:00
"@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",
2025-01-22 12:42:35 +00:00
"@stylistic/stylelint-plugin": "^3.1.1",
2024-10-27 17:10:27 +00:00
"colortranslator": "^4.1.0",
2023-11-27 22:18:47 +00:00
"hast": "^1.0.0",
2024-10-27 17:10:27 +00:00
"hast-util-from-html": "^2.0.3",
"hast-util-to-html": "^9.0.3",
2024-02-13 17:45:20 +00:00
"request": "^2.88.2",
2023-08-15 12:57:35 +00:00
"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>"
]
2023-01-25 20:38:33 +00:00
}