Start setting up the plugin metadata

This commit is contained in:
Diomede 2021-05-16 15:53:11 +02:00
parent d2e4016972
commit a90dc017a1
4 changed files with 15 additions and 14 deletions

2
.gitignore vendored
View file

@ -12,3 +12,5 @@ main.js
# obsidian
data.json
.vscode

View file

@ -1,10 +1,10 @@
{
"id": "obsidian-sample-plugin",
"name": "Sample Plugin",
"version": "1.0.1",
"id": "liquid-templates",
"name": "Liquid Templates",
"version": "0.1.0",
"minAppVersion": "0.9.12",
"description": "This is a sample plugin for Obsidian. This plugin demonstrates some of the capabilities of the Obsidian API.",
"author": "Obsidian",
"authorUrl": "https://obsidian.md/about",
"isDesktopOnly": false
"description": "Empower your template with LiquidJS tags",
"author": "diomedet",
"authorUrl": "https://diomedet.com/",
"isDesktopOnly": true
}

View file

@ -1,7 +1,7 @@
{
"name": "obsidian-sample-plugin",
"version": "0.12.0",
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"name": "liquid-templates",
"version": "0.1.0",
"description": "Empower your template with LiquidJS tags",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.js -w",
@ -19,5 +19,8 @@
"rollup": "^2.32.1",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"dependencies": {
"liquidjs": "^9.25.0"
}
}

View file

@ -1,4 +0,0 @@
/* Sets all the text color to red! */
body {
color: red;
}