mirror of
https://github.com/oen/liquid-template.git
synced 2026-07-22 05:40:24 +00:00
Start setting up the plugin metadata
This commit is contained in:
parent
d2e4016972
commit
a90dc017a1
4 changed files with 15 additions and 14 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -12,3 +12,5 @@ main.js
|
|||
|
||||
# obsidian
|
||||
data.json
|
||||
|
||||
.vscode
|
||||
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +0,0 @@
|
|||
/* Sets all the text color to red! */
|
||||
body {
|
||||
color: red;
|
||||
}
|
||||
Loading…
Reference in a new issue