Files
takerofnotes-plugin-sdk/package.json
2026-03-24 13:56:03 -04:00

39 lines
989 B
JSON

{
"name": "@takerofnotes/plugin-sdk",
"version": "0.3.1",
"description": "SDK to create a storage plugin for Taker of Notes",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://git.alt-tuning.co/takerofnotes/takerofnotes-plugin-sdk"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"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": {
"@types/semver": "^7.7.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"semver": "^7.7.4",
"zod": "^4.3.6"
}
}