mayurankv_Obsidian-Code-Styler/package.json

65 lines
2.2 KiB
JSON
Raw Normal View History

2023-01-25 20:38:33 +00:00
{
2023-07-07 18:08:14 +00:00
"name": "code-styler",
2023-11-28 01:00:40 +00:00
"version": "1.1.4",
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": {
2023-11-26 17:29:06 +00:00
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
2023-01-25 20:38:33 +00:00
"builtin-modules": "3.3.0",
2023-11-26 17:29:06 +00:00
"esbuild": "0.19.7",
"eslint": "^8.54.0",
2023-08-15 12:57:35 +00:00
"eslint-plugin-json": "^3.1.0",
2023-01-25 20:38:33 +00:00
"obsidian": "latest",
2023-10-25 08:53:34 +00:00
"stylelint": "^15.11.0",
2023-08-11 14:01:29 +00:00
"stylelint-config-idiomatic-order": "^9.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.7.0",
2023-08-15 12:57:35 +00:00
"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",
2023-08-11 14:01:29 +00:00
"stylelint-order": "^6.0.3",
2023-10-30 17:16:22 +00:00
"stylelint-plugin-defensive-css": "^0.10.2",
2023-08-15 12:57:35 +00:00
"stylelint-stylistic": "^0.4.3",
2023-08-11 14:01:29 +00:00
"stylelint-use-logical-spec": "^5.0.0",
2023-08-20 18:46:05 +00:00
"tslib": "2.6.2",
2023-11-26 17:29:06 +00:00
"typescript": "5.3.2",
2023-10-25 08:53:34 +00:00
"vitest": "^0.34.6"
2023-01-25 22:56:55 +00:00
},
"dependencies": {
2023-07-10 19:47:28 +00:00
"@codemirror/language": "github:lishid/cm-language",
2023-07-10 02:03:22 +00:00
"@codemirror/language-data": "^6.3.1",
2023-11-26 17:29:06 +00:00
"@codemirror/view": "^6.22.0",
"@lezer/common": "^1.1.1",
"@lezer/highlight": "^1.2.0",
2023-10-25 08:53:34 +00:00
"@simonwep/pickr": "^1.9.0",
2023-08-11 08:18:43 +00:00
"colortranslator": "^3.0.2",
2023-11-27 22:18:47 +00:00
"hast": "^1.0.0",
2023-08-15 12:57:35 +00:00
"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>"
]
2023-01-25 20:38:33 +00:00
}