|
1 | 1 | { |
2 | 2 | "name": "@distube/spotify", |
3 | 3 | "version": "1.5.2", |
4 | | - "description": "A DisTube custom plugin for supporting Spotify.", |
5 | | - "main": "./dist/index.js", |
6 | | - "typings": "./dist/index.d.ts", |
7 | | - "exports": "./dist/index.js", |
8 | | - "directories": { |
9 | | - "lib": "src" |
10 | | - }, |
11 | | - "files": [ |
12 | | - "dist" |
13 | | - ], |
14 | | - "scripts": { |
15 | | - "test": "jest", |
16 | | - "lint": "eslint .", |
17 | | - "lint:fix": "eslint . --fix", |
18 | | - "prettier": "prettier --write \"**/*.{js,ts,json,yml,yaml,md}\"", |
19 | | - "build": "tsup", |
20 | | - "build:check": "tsc --noEmit", |
21 | | - "update": "ncu -u && bun update", |
22 | | - "postinstall": "husky install", |
23 | | - "prepack": "bun run build && pinst -d", |
24 | | - "postpack": "pinst -e" |
25 | | - }, |
| 4 | + "author": "Skick", |
26 | 5 | "repository": { |
27 | 6 | "type": "git", |
28 | 7 | "url": "git+https://github.com/distubejs/spotify.git" |
29 | 8 | }, |
30 | | - "keywords": [ |
31 | | - "distube", |
32 | | - "plugin", |
33 | | - "spotify", |
34 | | - "discord", |
35 | | - "music" |
36 | | - ], |
37 | | - "author": "Skick", |
38 | | - "license": "MIT", |
39 | | - "bugs": { |
40 | | - "url": "https://github.com/distubejs/spotify/issues" |
| 9 | + "main": "./dist/index.js", |
| 10 | + "dependencies": { |
| 11 | + "spotify-uri": "^4.0.1", |
| 12 | + "spotify-url-info": "^3.2.13", |
| 13 | + "spotify-web-api-node": "^5.0.2", |
| 14 | + "undici": "^6.9.0" |
41 | 15 | }, |
42 | | - "homepage": "https://github.com/distubejs/spotify#readme", |
43 | 16 | "devDependencies": { |
44 | | - "@commitlint/cli": "^18.4.3", |
45 | | - "@commitlint/config-conventional": "^18.4.3", |
46 | | - "@discordjs/opus": "^0.9.0", |
| 17 | + "@commitlint/cli": "^19.2.0", |
| 18 | + "@commitlint/config-conventional": "^19.1.0", |
47 | 19 | "@discordjs/voice": "^0.16.1", |
48 | 20 | "@jest/globals": "^29.7.0", |
49 | 21 | "@types/spotify-web-api-node": "^5.0.11", |
50 | | - "@typescript-eslint/eslint-plugin": "^6.16.0", |
51 | | - "@typescript-eslint/parser": "^6.16.0", |
52 | | - "commitlint": "^18.4.3", |
| 22 | + "@typescript-eslint/eslint-plugin": "^7.2.0", |
| 23 | + "@typescript-eslint/parser": "^7.2.0", |
| 24 | + "commitlint": "^19.2.0", |
53 | 25 | "discord.js": "^14.14.1", |
54 | 26 | "distube": "^4.1.1", |
55 | | - "eslint": "^8.56.0", |
| 27 | + "eslint": "^8.57.0", |
56 | 28 | "eslint-config-distube": "^1.6.4", |
57 | 29 | "eslint-config-prettier": "^9.1.0", |
58 | 30 | "eslint-plugin-deprecation": "^2.0.0", |
59 | | - "eslint-plugin-jsdoc": "^46.9.1", |
60 | | - "husky": "^8.0.3", |
| 31 | + "eslint-plugin-jsdoc": "^48.2.1", |
| 32 | + "husky": "^9.0.11", |
61 | 33 | "jest": "^29.7.0", |
62 | 34 | "nano-staged": "^0.8.0", |
63 | 35 | "pinst": "^3.0.0", |
64 | | - "prettier": "^3.1.1", |
65 | | - "ts-jest": "^29.1.1", |
66 | | - "tsup": "^8.0.1", |
67 | | - "typescript": "^5.3.3" |
| 36 | + "prettier": "^3.2.5", |
| 37 | + "ts-jest": "^29.1.2", |
| 38 | + "tsup": "^8.0.2", |
| 39 | + "typescript": "^5.4.2" |
68 | 40 | }, |
69 | | - "dependencies": { |
70 | | - "spotify-uri": "^4.0.1", |
71 | | - "spotify-url-info": "^3.2.10", |
72 | | - "spotify-web-api-node": "^5.0.2", |
73 | | - "undici": "^6.2.1" |
| 41 | + "exports": "./dist/index.js", |
| 42 | + "bugs": { |
| 43 | + "url": "https://github.com/distubejs/spotify/issues" |
74 | 44 | }, |
75 | | - "peerDependencies": { |
76 | | - "distube": "^3.3.1||4" |
| 45 | + "description": "A DisTube custom plugin for supporting Spotify.", |
| 46 | + "directories": { |
| 47 | + "lib": "src" |
77 | 48 | }, |
| 49 | + "files": [ |
| 50 | + "dist" |
| 51 | + ], |
| 52 | + "funding": "https://github.com/skick1234/DisTube?sponsor=1", |
| 53 | + "homepage": "https://github.com/distubejs/spotify#readme", |
| 54 | + "keywords": [ |
| 55 | + "distube", |
| 56 | + "plugin", |
| 57 | + "spotify", |
| 58 | + "discord", |
| 59 | + "music" |
| 60 | + ], |
| 61 | + "license": "MIT", |
78 | 62 | "nano-staged": { |
79 | 63 | "*.ts": [ |
80 | 64 | "prettier --write", |
|
84 | 68 | "prettier --write" |
85 | 69 | ] |
86 | 70 | }, |
87 | | - "funding": "https://github.com/distubejs/ytdl-core?sponsor=1" |
| 71 | + "peerDependencies": { |
| 72 | + "distube": "^3.3.1||4" |
| 73 | + }, |
| 74 | + "scripts": { |
| 75 | + "test": "jest", |
| 76 | + "lint": "eslint .", |
| 77 | + "lint:fix": "eslint . --fix", |
| 78 | + "prettier": "prettier --write \"**/*.{js,ts,json,yml,yaml,md}\"", |
| 79 | + "build": "tsup", |
| 80 | + "build:check": "tsc --noEmit", |
| 81 | + "update": "ncu -u && bun update", |
| 82 | + "postinstall": "husky install", |
| 83 | + "prepack": "bun run build && pinst -d", |
| 84 | + "postpack": "pinst -e" |
| 85 | + }, |
| 86 | + "typings": "./dist/index.d.ts" |
88 | 87 | } |
0 commit comments