forked from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 KB
/
package.json
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
33
34
35
36
37
38
39
40
{
"name": "markdown-media-card",
"version": "1.2.0",
"description": "This is a plugin for Obsidian that allows you to insert media information cards in Markdown, such as books, music, movies, etc.",
"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",
"typesafe-i18n": "typesafe-i18n"
},
"keywords": [
"obsidian",
"plugin",
"markdown"
],
"author": "Zhou Hua",
"repository": {
"type": "git",
"url": "https://github.com/zhouhua/obsidian-markdown-media-card"
},
"bugs": {
"url": "https://github.com/zhouhua/obsidian-markdown-media-card/issues"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.28",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"builtin-modules": "3.3.0",
"esbuild": "0.20.2",
"obsidian": "latest",
"tslib": "2.6.2",
"typescript": "5.4.2"
},
"dependencies": {
"@zhouhua-dev/remark-media-card": "^1.1.6",
"typesafe-i18n": "^5.26.2"
}
}