forked from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 781 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 781 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
{
"name": "code-block-plugin",
"version": "1.0.0",
"description": "This plugin converts selected text into code blocks with automatic language detection.",
"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": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"builtin-modules": "^4.0.0",
"esbuild": "0.16.17",
"highlight.js": "^11.9.0",
"obsidian": "latest",
"tslib": "2.6.3",
"typescript": "5.4.5"
},
"dependencies": {
"yarn": "^1.22.22"
}
}