mayurankv_Obsidian-Code-Styler/package.json

74 lines
2.4 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": {
2025-01-27 22:50:31 +00:00
"@types/node": "^22.10.10",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
2024-10-27 17:10:27 +00:00
"builtin-modules": "4.0.0",
2025-01-27 22:50:31 +00:00
"esbuild": "^0.24.2",
2025-01-27 11:54:41 +00:00
"esbuild-sass-plugin": "^3.3.1",
2025-01-27 22:50:31 +00:00
"eslint": "^9.19.0",
2024-10-27 17:10:27 +00:00
"eslint-plugin-json": "^4.0.1",
2023-01-25 20:38:33 +00:00
"obsidian": "latest",
2025-01-27 11:54:41 +00:00
"sass": "^1.83.4",
2025-02-16 19:00:54 +00:00
"sass-migrator": "^2.3.1",
2025-01-27 22:50:31 +00:00
"stylelint": "^16.14.1",
2024-10-27 17:10:27 +00:00
"stylelint-config-idiomatic-order": "^10.0.0",
2025-01-27 22:50:31 +00:00
"stylelint-config-standard": "^37.0.0",
2024-10-27 17:10:27 +00:00
"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",
2025-01-27 22:50:31 +00:00
"stylelint-no-unsupported-browser-features": "^8.0.3",
2024-10-27 17:10:27 +00:00
"stylelint-order": "^6.0.4",
"stylelint-plugin-defensive-css": "^1.0.4",
"stylelint-use-logical-spec": "^5.0.1",
2025-01-27 22:50:31 +00:00
"tslib": "2.8.1",
"typescript": "5.7.3",
"vitest": "^3.0.4"
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",
2025-01-27 22:50:31 +00:00
"@codemirror/view": "^6.36.2",
2024-10-27 17:10:27 +00:00
"@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",
2025-02-04 20:33:19 +00:00
"@types/gsap": "^1.20.2",
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",
2025-01-27 22:50:31 +00:00
"hast-util-to-html": "^9.0.4",
2025-01-31 12:42:19 +00:00
"lodash": "^4.17.21",
2025-01-23 14:16:38 +00:00
"remark-parse": "^11.0.0",
2024-02-13 17:45:20 +00:00
"request": "^2.88.2",
2025-01-30 03:52:39 +00:00
"shiki": "^2.1.0",
2025-01-23 14:16:38 +00:00
"unified": "^11.0.5",
2023-08-15 12:57:35 +00:00
"unist-util-visit-parents": "^6.0.1"
},
"contributors": [
"Mayuran Visakan <mayuran.k.v@gmail.com>",
2025-02-16 21:29:47 +00:00
"mugiwara85 <65603765+mugiwara85@forwardrs.noreply.github.com>",
2023-08-15 12:57:35 +00:00
"Zsolt Szalai <kampimester@gmail.com>",
"Dimava <dimava2@ya.ru>",
"Michael Naumov <mnaoumov@gmail.com>"
]
2023-01-25 20:38:33 +00:00
}