mirror of
https://github.com/mayurankv/Obsidian-Code-Styler.git
synced 2026-07-22 08:10:29 +00:00
30 lines
857 B
JSON
30 lines
857 B
JSON
{
|
|
"name": "code-styler",
|
|
"version": "1.0.0",
|
|
"description": "This is a plugin for Obsidian (https://obsidian.md)",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [],
|
|
"author": "Mayuran Visakan",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^20.4.0",
|
|
"@typescript-eslint/eslint-plugin": "5.61.0",
|
|
"@typescript-eslint/parser": "5.61.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.17.3",
|
|
"obsidian": "latest",
|
|
"tslib": "2.6.0",
|
|
"typescript": "5.1.6"
|
|
},
|
|
"dependencies": {
|
|
"@codemirror/language": "https://github.com/lishid/cm-language",
|
|
"@lezer/common": "^1.0.3",
|
|
"@simonwep/pickr": "^1.8.2",
|
|
"colortranslator": "^2.0.0"
|
|
}
|
|
}
|