generated from nolebase/obsidian-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.19 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
41
42
43
44
45
46
47
48
49
{
"name": "obsidian-plugin-vue",
"type": "module",
"version": "0.1.0",
"packageManager": "[email protected]",
"description": "An Obsidian plugin that enables you to use Vue.js components in your notes.",
"author": {
"name": "Nólëbase",
"email": "[email protected]",
"url": "https://github.com/nolebase"
},
"license": "MIT",
"keywords": [
"markdown",
"nolebase-integration",
"obsidian",
"obsidian-plugin",
"vue"
],
"main": "./dist/main.js",
"files": [
"dist"
],
"scripts": {
"build:dev": "NODE_ENV=development unbuild",
"build": "unbuild",
"lint": "eslint --cache ."
},
"devDependencies": {
"@antfu/eslint-config": "^2.21.0",
"@codemirror/view": "^6.28.4",
"@types/node": "^20.14.10",
"@vue/compiler-sfc": "^3.4.31",
"builtin-modules": "^3.3.0",
"eslint": "^8.57.0",
"hast-util-to-html": "^9.0.1",
"obsidian": "^1.5.7",
"ofetch": "^1.3.4",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"typescript": "^5.5.3",
"unbuild": "^2.0.0",
"unified": "^11.0.5",
"unist-util-remove": "^4.0.0",
"vue": "^3.4.31"
}
}