-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "ytmusic_api_unofficial",
"version": "2.0.10",
"description": "A simple API to get music from YouTube Music",
"scripts": {
"test": "nodemon test.js",
"publish_npm": "npm run build && npm publish --access public",
"build": "tsc",
"build_auto": "nodemon --watch src --exec \"npm run build\"",
"docs:dev": "node docs/generateMd.js && vitepress dev ./docs",
"docs:build": "tsc && api-extractor run --local --verbose && node docs/generateMd.js && vitepress build ./docs"
},
"nodemonConfig": {
"ignore": [
"*.json"
],
"ext": "js,json,ts"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"YouTube",
"YouTube music",
"music",
"Free"
],
"author": "Alexis06030631",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:Alexis06030631/yt_music_api.git",
"directory": "src",
"branch": "main"
},
"bugs": {
"url": "https://github.com/Alexis06030631/yt_music_api/issues"
},
"homepage": "https://alexis06030631.github.io/yt_music_api/",
"dependencies": {
"axios": "^1.7.2",
"cookie": "^1.0.1",
"node-cache": "^5.1.2",
"sha1": "^1.1.1"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.47.0",
"@types/node": "^20.14.2",
"comment-parser": "^1.4.1",
"fs-extra": "^11.2.0",
"nodemon": "^3.1.3",
"typescript": "^5.4.5",
"vitepress": "^1.2.3"
},
"release": {
"branches": [
"main"
]
}
}