feat: add meta packages
Signed-off-by: Alix von Schirp <github@avonschirp.bootmedia.de>
This commit is contained in:
7
meta/notify-push/eslint.config.mjs
Normal file
7
meta/notify-push/eslint.config.mjs
Normal file
@@ -0,0 +1,7 @@
|
||||
import repoConfig from "@repo/configs/eslint";
|
||||
|
||||
export default [
|
||||
...repoConfig,
|
||||
{ ignores: ["dist/**", "docs/**"] },
|
||||
{ files: ["**/*.{ts}"] },
|
||||
];
|
||||
3
meta/notify-push/jest.config.js
Normal file
3
meta/notify-push/jest.config.js
Normal file
@@ -0,0 +1,3 @@
|
||||
import repoCofig from "@repo/configs/jest";
|
||||
|
||||
export default [...repoCofig];
|
||||
90
meta/notify-push/package.json
Normal file
90
meta/notify-push/package.json
Normal file
@@ -0,0 +1,90 @@
|
||||
{
|
||||
"name": "@cis-oss/notify-push",
|
||||
"description": "Send push notifications to your users. Meta package wrapping several @cis-oss packages. See README.md for more information.",
|
||||
"homepage": "https://cis-oss.github.io/notify",
|
||||
"version": "0.0.1",
|
||||
"main": "src/index.ts",
|
||||
"author": {
|
||||
"email": "hi@b00tload.space",
|
||||
"name": "Alix von Schirp",
|
||||
"url": "https://b00tload.space"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/cis-oss/pushover.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/cis-oss/pushover/issues"
|
||||
},
|
||||
"keywords": [
|
||||
"mobile",
|
||||
"notification",
|
||||
"notifications",
|
||||
"push",
|
||||
"pushover"
|
||||
],
|
||||
"dependencies": {
|
||||
"@cis-oss/pushover": "workspace:"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint/js": "^9.22.0",
|
||||
"@repo/configs": "workspace:",
|
||||
"@shipgirl/typedoc-plugin-versions": "^0.3.0",
|
||||
"@types/jest": "^29.5.14",
|
||||
"@types/node": "^22.13.10",
|
||||
"eslint": "^9.22.0",
|
||||
"eslint-config-prettier": "^10.1.1",
|
||||
"eslint-plugin-only-warn": "^1.1.0",
|
||||
"globals": "^16.0.0",
|
||||
"jest": "^29.7.0",
|
||||
"shx": "^0.4.0",
|
||||
"ts-jest": "^29.2.6",
|
||||
"tsx": "^4.19.3",
|
||||
"typedoc": "^0.27.9",
|
||||
"typedoc-github-theme": "^0.2.1",
|
||||
"typedoc-plugin-coverage": "^3.4.1",
|
||||
"typedoc-plugin-extras": "^4.0.0",
|
||||
"typedoc-plugin-include-example": "^2.0.2",
|
||||
"typedoc-plugin-inline-sources": "^1.2.1",
|
||||
"typedoc-plugin-mdn-links": "^5.0.1",
|
||||
"typedoc-plugin-zod": "^1.4.0",
|
||||
"typescript": "^5.5.3",
|
||||
"typescript-eslint": "^8.26.0"
|
||||
},
|
||||
"files": [
|
||||
"dist/**/*.{js,ts,map}"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"build:watch": "tsc --watch",
|
||||
"check": "pnpm run lint:ci && pnpm run typecheck",
|
||||
"clean": "shx rm -rf dist/",
|
||||
"docs:generate": "typedoc",
|
||||
"format:check": "prettier --check .",
|
||||
"lint": "eslint .",
|
||||
"lint:ci": "eslint --max-warnings 0",
|
||||
"prepublishOnly": "pnpm run clean && pnpm run build",
|
||||
"test": "jest",
|
||||
"typecheck": "tsc --noEmit"
|
||||
},
|
||||
"private": true,
|
||||
"license": "MIT",
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Alix von Schirp",
|
||||
"email": "hi@b00tload.space",
|
||||
"url": "https://b00tload.space"
|
||||
},
|
||||
{
|
||||
"name": "Ole",
|
||||
"email": "jateute123@gmail.com",
|
||||
"url": "https://github.com/jateute"
|
||||
}
|
||||
],
|
||||
"packageManager": "pnpm@10.6.5",
|
||||
"publishConfig": {
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/index.d.ts"
|
||||
},
|
||||
"type": "module"
|
||||
}
|
||||
3
meta/notify-push/src/index.ts
Normal file
3
meta/notify-push/src/index.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
import { Pushover } from "@cis-oss/pushover";
|
||||
|
||||
export { Pushover };
|
||||
12
meta/notify-push/tsconfig.json
Normal file
12
meta/notify-push/tsconfig.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"extends": "@repo/configs/tsconfig.json",
|
||||
"compilerOptions": {
|
||||
/* Path Aliases */
|
||||
"baseUrl": "./src",
|
||||
"paths": {
|
||||
"~/*": ["./src/*"]
|
||||
}
|
||||
},
|
||||
"include": ["src/**/*.ts", "src/**/*.tsx"],
|
||||
"exclude": ["node_modules/**/*", "docs/**/*", "dist/**/*"]
|
||||
}
|
||||
7
meta/notify/eslint.config.mjs
Normal file
7
meta/notify/eslint.config.mjs
Normal file
@@ -0,0 +1,7 @@
|
||||
import repoConfig from "@repo/configs/eslint";
|
||||
|
||||
export default [
|
||||
...repoConfig,
|
||||
{ ignores: ["dist/**", "docs/**"] },
|
||||
{ files: ["**/*.{ts}"] },
|
||||
];
|
||||
3
meta/notify/jest.config.js
Normal file
3
meta/notify/jest.config.js
Normal file
@@ -0,0 +1,3 @@
|
||||
import repoCofig from "@repo/configs/jest";
|
||||
|
||||
export default [...repoCofig];
|
||||
90
meta/notify/package.json
Normal file
90
meta/notify/package.json
Normal file
@@ -0,0 +1,90 @@
|
||||
{
|
||||
"name": "@cis-oss/notify",
|
||||
"description": "Send push notifications to your users. Meta package wrapping several @cis-oss packages. See README.md for more information.",
|
||||
"homepage": "https://cis-oss.github.io/notify",
|
||||
"version": "0.0.1",
|
||||
"main": "src/index.ts",
|
||||
"author": {
|
||||
"email": "hi@b00tload.space",
|
||||
"name": "Alix von Schirp",
|
||||
"url": "https://b00tload.space"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/cis-oss/pushover.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/cis-oss/pushover/issues"
|
||||
},
|
||||
"keywords": [
|
||||
"mobile",
|
||||
"notification",
|
||||
"notifications",
|
||||
"push",
|
||||
"pushover"
|
||||
],
|
||||
"dependencies": {
|
||||
"@cis-oss/pushover": "workspace:"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@repo/configs": "workspace:",
|
||||
"@eslint/js": "^9.22.0",
|
||||
"@shipgirl/typedoc-plugin-versions": "^0.3.0",
|
||||
"@types/jest": "^29.5.14",
|
||||
"@types/node": "^22.13.10",
|
||||
"eslint": "^9.22.0",
|
||||
"eslint-config-prettier": "^10.1.1",
|
||||
"eslint-plugin-only-warn": "^1.1.0",
|
||||
"globals": "^16.0.0",
|
||||
"jest": "^29.7.0",
|
||||
"shx": "^0.4.0",
|
||||
"ts-jest": "^29.2.6",
|
||||
"tsx": "^4.19.3",
|
||||
"typedoc": "^0.27.9",
|
||||
"typedoc-github-theme": "^0.2.1",
|
||||
"typedoc-plugin-coverage": "^3.4.1",
|
||||
"typedoc-plugin-extras": "^4.0.0",
|
||||
"typedoc-plugin-include-example": "^2.0.2",
|
||||
"typedoc-plugin-inline-sources": "^1.2.1",
|
||||
"typedoc-plugin-mdn-links": "^5.0.1",
|
||||
"typedoc-plugin-zod": "^1.4.0",
|
||||
"typescript": "^5.5.3",
|
||||
"typescript-eslint": "^8.26.0"
|
||||
},
|
||||
"files": [
|
||||
"dist/**/*.{js,ts,map}"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"build:watch": "tsc --watch",
|
||||
"check": "pnpm run lint:ci && pnpm run typecheck",
|
||||
"clean": "shx rm -rf dist/",
|
||||
"docs:generate": "typedoc",
|
||||
"format:check": "prettier --check .",
|
||||
"lint": "eslint .",
|
||||
"lint:ci": "eslint --max-warnings 0",
|
||||
"prepublishOnly": "pnpm run clean && pnpm run build",
|
||||
"test": "jest",
|
||||
"typecheck": "tsc --noEmit"
|
||||
},
|
||||
"private": true,
|
||||
"license": "MIT",
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Alix von Schirp",
|
||||
"email": "hi@b00tload.space",
|
||||
"url": "https://b00tload.space"
|
||||
},
|
||||
{
|
||||
"name": "Ole",
|
||||
"email": "jateute123@gmail.com",
|
||||
"url": "https://github.com/jateute"
|
||||
}
|
||||
],
|
||||
"packageManager": "pnpm@10.6.5",
|
||||
"publishConfig": {
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/index.d.ts"
|
||||
},
|
||||
"type": "module"
|
||||
}
|
||||
3
meta/notify/src/index.ts
Normal file
3
meta/notify/src/index.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
import { Pushover } from "@cis-oss/pushover";
|
||||
|
||||
export { Pushover };
|
||||
12
meta/notify/tsconfig.json
Normal file
12
meta/notify/tsconfig.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"extends": "@repo/configs/tsconfig.json",
|
||||
"compilerOptions": {
|
||||
/* Path Aliases */
|
||||
"baseUrl": "./src",
|
||||
"paths": {
|
||||
"~/*": ["./src/*"]
|
||||
}
|
||||
},
|
||||
"include": ["src/**/*.ts", "src/**/*.tsx"],
|
||||
"exclude": ["node_modules/**/*", "docs/**/*", "dist/**/*"]
|
||||
}
|
||||
29
meta/notify/typedoc.config.mjs
Normal file
29
meta/notify/typedoc.config.mjs
Normal file
@@ -0,0 +1,29 @@
|
||||
// @ts-nocheck
|
||||
/** @type {import("typedoc").TypeDocOptions &
|
||||
* import("typedoc-plugin-extras").ExtrasOptions &
|
||||
* import("typedoc-plugin-coverage").CoverageOptions &
|
||||
* import("typedoc-plugin-mdn-links").MdnLinksOptions &
|
||||
* import("typedoc-plugin-zod").ZodOptions} */
|
||||
const config = {
|
||||
compilerOptions: {
|
||||
skipLibCheck: true,
|
||||
strict: false,
|
||||
},
|
||||
entryPoints: ["src/index.ts"],
|
||||
out: "docs",
|
||||
plugin: [
|
||||
"typedoc-plugin-coverage",
|
||||
"typedoc-plugin-extras",
|
||||
"typedoc-plugin-inline-sources",
|
||||
"typedoc-plugin-mdn-links",
|
||||
"typedoc-plugin-zod",
|
||||
"typedoc-plugin-include-example",
|
||||
"@shipgirl/typedoc-plugin-versions",
|
||||
"typedoc-github-theme",
|
||||
],
|
||||
customFooterHtml: '<p class="tsd-generator" style="display: inline-flex; flex-direction: row; justify-content: space-around; width: 100%;"> <span> Made with ❤ by <a href="https://b00tload.space">Alix von Schirp</a> @ <a href="https://github.com/cis-oss">CISLabs OSS</a> </span> <span> <a href="https://github.com/cis-oss/pushover" target="_blank">GitHub</a> | <a href="https://github.com/cis-oss/pushover/issues" target="_blank">Issues</a> | <a href="https://github.com/cis-oss/pushover/blob/main/LICENSE" target="_blank">License</a> </span> <span>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc </a> with <a href="https://github.com/JulianWowra/typedoc-github-theme" target="_blank">typedoc-github-theme</a></span></p>',
|
||||
coverageOutputType: "json",
|
||||
hideGenerator: true,
|
||||
};
|
||||
|
||||
export default config;
|
||||
Reference in New Issue
Block a user