-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 958 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 958 Bytes
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
{
"name": "ytmusic-api",
"version": "5.3.0",
"description": "YouTube Music API",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"author": "zS1L3NT <dev@zectan.com> (http://www.zectan.com)",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/zS1L3NT/ts-npm-ytmusic-api"
},
"files": ["dist", "package.json"],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup src/index.ts",
"lint": "tsc --noEmit ; bunx @biomejs/biome check --write"
},
"dependencies": {
"@biomejs/biome": "1.8.3",
"axios": "^1.7.2",
"tough-cookie": "^4.1.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/tough-cookie": "^4.0.5",
"bun-types": "^1.1.18",
"tsup": "^8.1.0",
"typescript": "5.1",
"zod-to-json-schema": "^3.23.1"
},
"keywords": ["youtube", "music", "api"]
}