for-modules 1.0.0 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -2,10 +2,10 @@
2
2
  "name": "for-modules",
3
3
  "main": "dist/index.js",
4
4
  "types": "dist/index.d.ts",
5
- "version": "1.0.0",
5
+ "version": "1.1.0",
6
6
  "description": "For lavalink",
7
7
  "license": "MIT",
8
- "author": "kungkmg",
8
+ "author": "v",
9
9
  "scripts": {
10
10
  "start": "tsc -p . && bun dist/index.js",
11
11
  "build:js": "npx babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2024 EvarinDev
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
package/NOTICE.txt DELETED
@@ -1,12 +0,0 @@
1
- This project includes code from the Apache-licensed project magmastream, erela.js
2
-
3
- Portions of this software are licensed under the Apache License, Version 2.0 (the "Apache License");
4
- you may not use this file except in compliance with the Apache License. You may obtain a copy of the
5
- Apache License at http://www.apache.org/licenses/LICENSE-2.0
6
-
7
- Unless required by applicable law or agreed to in writing, software distributed under the Apache License
8
- is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9
- See the Apache License for the specific language governing permissions and limitations under the Apache License.
10
-
11
- Copyright 2021 MenuDocs
12
- Copyright 2023 Blackfort-Hosting
package/babel.config.json DELETED
@@ -1,6 +0,0 @@
1
- {
2
- "presets": [
3
- "@babel/preset-env",
4
- "@babel/preset-typescript"
5
- ]
6
- }
@@ -1,2 +0,0 @@
1
- declare const _default: any[];
2
- export default _default;
package/eslint.config.js DELETED
@@ -1,12 +0,0 @@
1
- const globals = require("globals");
2
- const pluginJs = require( "@eslint/js");
3
- const tseslint = require( "typescript-eslint");
4
-
5
-
6
- module.exports = [
7
- { files: ["**/*.{js,mjs,cjs,ts}"] },
8
- { files: ["**/*.js"], languageOptions: { sourceType: "commonjs" } },
9
- { languageOptions: { globals: globals.browser } },
10
- pluginJs.configs.recommended,
11
- ...tseslint.configs.recommended,
12
- ];
package/renovate.json DELETED
@@ -1,6 +0,0 @@
1
- {
2
- "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
- "extends": [
4
- "config:recommended"
5
- ]
6
- }
package/tsconfig.json DELETED
@@ -1,25 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "lib": ["ESNext", "DOM"],
4
- "target": "ESNext",
5
- "module": "ESNext",
6
- "moduleDetection": "force",
7
- "jsx": "react-jsx",
8
- "allowJs": true,
9
- "moduleResolution": "bundler",
10
- "allowImportingTsExtensions": true,
11
- "skipLibCheck": true,
12
- "noFallthroughCasesInSwitch": true,
13
- "noUnusedLocals": false,
14
- "noUnusedParameters": false,
15
- "noPropertyAccessFromIndexSignature": false,
16
- "rootDir": "src",
17
- "outDir": "./dist",
18
- "declaration": true,
19
- "emitDeclarationOnly": true,
20
- "isolatedModules": true
21
- },
22
- "include": [
23
- "src/**/*"
24
- ]
25
- }