-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.08 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
{
"name": "u-wave-source-soundcloud",
"version": "2.0.4",
"description": "SoundCloud media source for üWave.",
"license": "MIT",
"repository": "u-wave/u-wave-source-soundcloud",
"author": "Sooyou",
"contributors": [
"Renée Kooi <[email protected]>"
],
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"type": "module",
"keywords": [
"u-wave-source",
"soundcloud"
],
"engines": {
"node": ">= 10"
},
"dependencies": {
"get-artist-title": "^1.2.0",
"http-errors": "^2.0.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/http-errors": "^2.0.1",
"@types/node-fetch": "^2.5.4",
"dprint": "^0.48.0",
"nock": "^13.0.3",
"oxlint": "^0.15.2",
"tsup": "^8.0.1",
"pino": "^9.0.0",
"typescript": "^5.0.2",
"vitest": "^2.0.2"
},
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"prepare": "npm run build",
"lint": "oxlint src && dprint check",
"tests-only": "vitest run",
"test": "npm run build && npm run tests-only && npm run lint"
}
}