-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.22 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
{
"name": "u-wave-source-youtube",
"description": "YouTube media source for üWave.",
"version": "2.1.0",
"author": "Sooyou",
"contributors": [
"Renée Kooi <[email protected]>"
],
"type": "module",
"dependencies": {
"get-artist-title": "^1.2.0",
"get-youtube-chapters": "^2.0.0",
"get-youtube-id": "^1.0.0",
"http-errors": "^2.0.0",
"node-fetch": "^2.6.0",
"parse-iso-duration": "^1.1.0"
},
"devDependencies": {
"@types/http-errors": "^2.0.0",
"@types/node-fetch": "^2.5.4",
"@types/qs": "^6.9.4",
"dprint": "^0.48.0",
"nock": "^13.0.3",
"oxlint": "^0.15.2",
"tsup": "^8.0.1",
"typescript": "^5.0.2"
},
"engines": {
"node": ">= 18"
},
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"keywords": [
"u-wave-source",
"youtube"
],
"license": "MIT",
"repository": "u-wave/u-wave-source-youtube",
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"prepare": "npm run build",
"lint": "oxlint src && dprint check",
"tests-only": "node test/test.js",
"test": "npm run build && npm run tests-only && npm run lint"
},
"typings": "./dist/index.d.ts"
}