-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 783 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "obsidian-html-live-editor",
"version": "1.2.2",
"description": "Click to edit text in HTML blocks directly within Live Preview mode.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"typecheck": "tsc -noEmit -skipLibCheck"
},
"keywords": [
"obsidian",
"html",
"live-preview",
"editor"
],
"author": "Elijah",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/elijah/html-live-editor.git"
},
"devDependencies": {
"@types/node": "^20.11.0",
"esbuild": "^0.20.0",
"obsidian": "1.5.7",
"typescript": "^5.3.0",
"@codemirror/view": "^6.23.0",
"@codemirror/state": "^6.4.0",
"@codemirror/language": "^6.10.0"
}
}