@supasayan/ytm 1.0.1 → 1.0.2
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 +7 -1
package/package.json
CHANGED
|
@@ -1,12 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@supasayan/ytm",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Root package to run both client and server",
|
|
5
5
|
"main": "main.js",
|
|
6
6
|
"productName": "YTM",
|
|
7
7
|
"bin": {
|
|
8
8
|
"ytm": "./bin/cli.js"
|
|
9
9
|
},
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"express": "^4.21.0",
|
|
12
|
+
"cors": "^2.8.5",
|
|
13
|
+
"ytmusic-api": "^5.0.0",
|
|
14
|
+
"ffmpeg-static": "^5.2.0"
|
|
15
|
+
},
|
|
10
16
|
"scripts": {
|
|
11
17
|
"start": "npx concurrently \"npm run start --prefix server\" \"npm run dev --prefix client\"",
|
|
12
18
|
"dev": "npx concurrently \"npm run dev --prefix server\" \"npm run dev --prefix client\"",
|