Some Changes

This commit is contained in:
killer069 2021-12-14 15:15:49 +05:30
parent d43ea8f6e0
commit 4b4875b97f
3 changed files with 2330 additions and 9 deletions

1
.gitignore vendored
View File

@ -1,6 +1,5 @@
node_modules/ node_modules/
dist/ dist/
package-lock.json
.npmrc .npmrc
examples/node_modules examples/node_modules
examples/package-lock.json examples/package-lock.json

2323
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -4,14 +4,15 @@
"description": "YouTube, SoundCloud, Spotify, Deezer searching and streaming for discord.js bots", "description": "YouTube, SoundCloud, Spotify, Deezer searching and streaming for discord.js bots",
"main": "dist/index.js", "main": "dist/index.js",
"typings": "dist/index.d.ts", "typings": "dist/index.d.ts",
"module": "dist/index.mjs",
"directories": { "directories": {
"example": "examples" "example": "examples"
}, },
"scripts": { "scripts": {
"build": "tsc", "build": "tsup",
"build:check": "tsc --noEmit --incremental false", "build:check": "tsc --noEmit --incremental false",
"pretty": "prettier --config .prettierrc \"play-dl/*.ts\" \"play-dl/*/*.ts\" \"play-dl/*/*/*.ts\" --write ", "pretty": "prettier --config .prettierrc \"play-dl/*.ts\" \"play-dl/*/*.ts\" \"play-dl/*/*/*.ts\" --write ",
"prepublishOnly": "tsc --build --clean && tsc --build --verbose" "prepublishOnly": "tsup"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
@ -43,12 +44,10 @@
"devDependencies": { "devDependencies": {
"@types/node": "^16.9.4", "@types/node": "^16.9.4",
"prettier": "^2.3.1", "prettier": "^2.3.1",
"tsup": "^5.11.1",
"typedoc": "^0.22.9", "typedoc": "^0.22.9",
"typedoc-plugin-extras": "^2.2.1",
"typedoc-plugin-missing-exports": "^0.22.4", "typedoc-plugin-missing-exports": "^0.22.4",
"typescript": "^4.4.4" "typescript": "^4.4.4",
}, "typedoc-plugin-extras": "^2.2.1"
"dependencies": {
"play-audio": "^0.4.3"
} }
} }