diff --git a/.npmignore b/.npmignore index 3f95b38..dd22e01 100644 --- a/.npmignore +++ b/.npmignore @@ -3,8 +3,14 @@ .github .gitignore .npmignore +.husky node_modules src README.md tsconfig.json tsup.config.ts +eslint.config.js +.prettierrc +.vscode +eslint.config.typeaware.cjs +tsconfig.eslint.json diff --git a/package-lock.json b/package-lock.json index 698107a..5163796 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "discord-audio-stream", - "version": "0.6.19", + "version": "0.6.20", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/package.json b/package.json index f5e0d08..7d2b92a 100644 --- a/package.json +++ b/package.json @@ -1,23 +1,23 @@ { "name": "discord-audio-stream", - "version": "0.6.19", + "version": "0.6.20", "license": "LGPL-2.1-only", "description": "NodeJS library to make stream any audio on discord easier.", "exports": { ".": { "require": { - "types": "./dist/types.d.ts", + "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "import": { - "types": "./dist/types.d.mts", + "types": "./dist/index.d.mts", "default": "./dist/index.mjs" } } }, "main": "./dist/index.js", "module": "./dist/index.mjs", - "types": "./dist/types.d.ts", + "types": "./dist/index.d.ts", "files": [ "dist" ],