refactor: project into monorepo

This commit is contained in:
Aleksi Lassila
2025-08-09 13:39:48 +03:00
parent b28f3be8b7
commit d831c59647
335 changed files with 25170 additions and 7846 deletions

20
shared/package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "@aleksilassila/reiverr-shared",
"version": "4.0.0",
"main": "dist/src/index",
"types": "./dist/src/index.d.ts",
"private": true,
"scripts": {
"build": "tsc",
"clean": "rm -rf dist"
},
"author": "",
"license": "ISC",
"devDependencies": {
"typescript": "^5.2.2"
},
"description": "Shared types and utilities for Reiverr",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}