Add tsdav dependency with basic example

This commit is contained in:
Marek S. Lukasiewicz
2025-01-03 21:32:18 +01:00
parent 933c55400d
commit d796b8ac62
2 changed files with 6 additions and 2 deletions

2
.gitignore vendored
View File

@@ -1,2 +1,4 @@
deno.lock
*.plug.js
test_space
.env

View File

@@ -1,7 +1,8 @@
{
"tasks": {
"build": "silverbullet plug:compile -c deno.jsonc caldav.plug.yaml",
"watch": "silverbullet plug:compile -c deno.jsonc caldav.plug.yaml -w"
"watch": "silverbullet plug:compile -c deno.jsonc caldav.plug.yaml -w",
"example": "deno run --allow-read --allow-env --env-file --allow-net example.ts"
},
"lint": {
"rules": {
@@ -16,6 +17,7 @@
]
},
"imports": {
"@silverbulletmd/silverbullet": "jsr:@silverbulletmd/silverbullet@^0.9.0"
"@silverbulletmd/silverbullet": "jsr:@silverbulletmd/silverbullet@^0.9.0",
"tsdav": "npm:tsdav@2.1.3"
}
}