Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
very basic init
Browse files Browse the repository at this point in the history
  • Loading branch information
Notplayingallday383 authored May 7, 2024
1 parent d40d300 commit 5e5c2bb
Show file tree
Hide file tree
Showing 10 changed files with 75 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLETE/general.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# TODO
Empty file added .github/workflows/release.yml
Empty file.
1 change: 1 addition & 0 deletions .github/workflows/tester.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# TODO
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
dist
7 changes: 7 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -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.
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
17 changes: 17 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
7 changes: 7 additions & 0 deletions security.md
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// TODO
16 changes: 16 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -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"]
}

0 comments on commit 5e5c2bb

Please sign in to comment.