chore: setup npm workspaces and plugin types as package

This commit is contained in:
Aleksi Lassila
2025-02-08 01:40:19 +02:00
parent 1203c958fc
commit 7d2397bc7f
18 changed files with 121 additions and 35 deletions

View File

@@ -0,0 +1,19 @@
{
"name": "@aleksilassila/reiverr-plugin",
"version": "1.0.0",
"main": "dist/index",
"scripts": {
"build": "tsc",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:major": "npm version major && npm publish"
},
"author": "",
"license": "ISC",
"devDependencies": {},
"types": "./dist/index.d.ts",
"description": "",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}