From 5e5c2bbd78b0e1ca046ef29dab9fc20307a4f588 Mon Sep 17 00:00:00 2001 From: John <72810050+Notplayingallday383@users.noreply.github.com> Date: Mon, 6 May 2024 21:28:46 -0400 Subject: [PATCH] very basic init --- .github/ISSUE_TEMPLETE/general.md | 1 + .github/workflows/release.yml | 0 .github/workflows/tester.yml | 1 + .gitignore | 2 ++ LICENSE | 7 +++++++ README.md | 23 +++++++++++++++++++++++ package.json | 17 +++++++++++++++++ security.md | 7 +++++++ src/index.ts | 1 + tsconfig.json | 16 ++++++++++++++++ 10 files changed, 75 insertions(+) create mode 100644 .github/ISSUE_TEMPLETE/general.md create mode 100644 .github/workflows/release.yml create mode 100644 .github/workflows/tester.yml create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 package.json create mode 100644 security.md create mode 100644 src/index.ts create mode 100644 tsconfig.json diff --git a/.github/ISSUE_TEMPLETE/general.md b/.github/ISSUE_TEMPLETE/general.md new file mode 100644 index 0000000..f87f5c1 --- /dev/null +++ b/.github/ISSUE_TEMPLETE/general.md @@ -0,0 +1 @@ +# TODO \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..e69de29 diff --git a/.github/workflows/tester.yml b/.github/workflows/tester.yml new file mode 100644 index 0000000..f87f5c1 --- /dev/null +++ b/.github/workflows/tester.yml @@ -0,0 +1 @@ +# TODO \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..76add87 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +node_modules +dist \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..5413b66 --- /dev/null +++ b/LICENSE @@ -0,0 +1,7 @@ +Copyright 2024 z1g Project + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md index bf49e1d..67c7426 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,25 @@ # injectify + The better made open source version of Sodiums Plugin Injector + +## Usage + +> [!NOTE] If your a skid fuck off this is not for you. This is for developers + +To add to an existing React, Dreamland, Next, etc project you can do it via downloading the npm package and adding it to your site via backend or using something like vite. + +```bash +npm i @z1g-project/injectify +``` + +if your statically hosting this simply build this repository and add it to your site or use `unpkg` to add it. + +### Setting up Plugins + +Plugins should be saved to a localstorage item or you can modify the configuration to use something like `FilerFS` to access the plugins. Refer to our documentation to learn how to configure your config file. + +### Credits + +- Made with Love by XSTARS +- © Copyright 2024 the z1g Project All Rights Reserved +- Licensed under the MIT License \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..b41b888 --- /dev/null +++ b/package.json @@ -0,0 +1,17 @@ +{ + "name": "@z1g-project/injectify", + "version": "1.0.0", + "author": "z1g Project", + "type": "module", + "scripts": { + "test": "", + "build": "", + "publish": "" + }, + "dependencies": { + + }, + "devDependencies": { + "esbuild": "^0.20.2" + } +} \ No newline at end of file diff --git a/security.md b/security.md new file mode 100644 index 0000000..7c3e349 --- /dev/null +++ b/security.md @@ -0,0 +1,7 @@ +# Security Information + +If you have found a vulnerability simply make a github issue, or contact support: support@z1g.top + +## Supported Versions + +No versions are currently released \ No newline at end of file diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..0ffdd02 --- /dev/null +++ b/src/index.ts @@ -0,0 +1 @@ +// TODO \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..108af52 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,16 @@ +{ + "compilerOptions": { + "outDir": "build", + "sourceMap": true, + "target": "ES2022", + "lib": ["DOM", "DOM.Iterable", "ES2019"], + "strict": true, + "stripInternal": true, + "module": "ES6", + "moduleResolution": "node", + "allowSyntheticDefaultImports": true, + "noImplicitAny":false, + "declaration": true + }, + "include": ["src"] +} \ No newline at end of file