Added plugin testing suite

This commit is contained in:
nicwands
2026-02-27 13:03:19 -05:00
parent 3c8b896073
commit fb62c356d8
5 changed files with 1047 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
{
"name": "takerofnotes-plugin-sdk",
"name": "@takerofnotes/plugin-sdk",
"version": "0.1.0",
"description": "SDK to create a storage plugin for Taker of Notes",
"type": "module",
@@ -21,13 +21,15 @@
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"dev": "tsup src/index.ts --format esm --dts --watch",
"test": "vitest",
"prepublishOnly": "npm run build"
},
"author": "nicwands",
"license": "MIT",
"devDependencies": {
"tsup": "^8.5.1",
"typescript": "^5.9.3"
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"dependencies": {
"zod": "^4.3.6"