2023-01-25 20:38:33 +00:00
|
|
|
{
|
2023-07-07 18:08:14 +00:00
|
|
|
"name": "code-styler",
|
2023-08-10 16:41:14 +00:00
|
|
|
"version": "1.0.5",
|
2023-07-07 18:08:14 +00:00
|
|
|
"description": "This is a plugin for Obsidian (https://obsidian.md)",
|
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-10 16:20:24 +00:00
|
|
|
"lint": "eslint --fix --max-warnings=0 src",
|
2023-01-25 20:38:33 +00:00
|
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
|
|
|
},
|
|
|
|
|
"keywords": [],
|
2023-07-07 18:08:14 +00:00
|
|
|
"author": "Mayuran Visakan",
|
2023-01-25 20:38:33 +00:00
|
|
|
"license": "MIT",
|
|
|
|
|
"devDependencies": {
|
2023-08-11 08:18:43 +00:00
|
|
|
"@types/node": "^20.4.9",
|
2023-08-10 15:03:59 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.3.0",
|
|
|
|
|
"@typescript-eslint/parser": "^6.3.0",
|
2023-01-25 20:38:33 +00:00
|
|
|
"builtin-modules": "3.3.0",
|
2023-08-11 08:18:43 +00:00
|
|
|
"esbuild": "0.19.0",
|
2023-08-10 15:03:59 +00:00
|
|
|
"eslint": "^8.46.0",
|
2023-01-25 20:38:33 +00:00
|
|
|
"obsidian": "latest",
|
2023-08-11 08:18:43 +00:00
|
|
|
"tslib": "2.6.1",
|
2023-07-08 11:39:49 +00:00
|
|
|
"typescript": "5.1.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-08-10 16:20:24 +00:00
|
|
|
"@codemirror/view": "^6.16.0",
|
2023-06-25 08:32:46 +00:00
|
|
|
"@lezer/common": "^1.0.3",
|
2023-07-10 02:03:22 +00:00
|
|
|
"@lezer/highlight": "^1.1.6",
|
2023-06-23 12:06:07 +00:00
|
|
|
"@simonwep/pickr": "^1.8.2",
|
2023-08-11 08:18:43 +00:00
|
|
|
"colortranslator": "^3.0.2",
|
2023-08-05 15:01:57 +00:00
|
|
|
"remark-parse": "^10.0.2",
|
|
|
|
|
"unified": "^10.1.2",
|
|
|
|
|
"unist-util-visit": "^5.0.0"
|
2023-01-25 20:38:33 +00:00
|
|
|
}
|
|
|
|
|
}
|