38 lines
947 B
JSON
38 lines
947 B
JSON
{
|
|
"name": "@takerofnotes/plugin-sdk",
|
|
"version": "0.3.0",
|
|
"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://github.com/nicwands/takerofnotes-plugin-sdk.git"
|
|
},
|
|
"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": {
|
|
"tsup": "^8.5.1",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"dependencies": {
|
|
"zod": "^4.3.6"
|
|
}
|
|
}
|