forked from Moestash/soundcloud.ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.47 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.47 KB
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
60
61
62
63
64
{
"name": "@elluzion/soundcloud.ts",
"version": "0.7.0-alpha0",
"description": "Soundcloud API v2 wrapper with typings. Fully web-compatible.",
"main": "dist/soundcloud.js",
"types": "dist/soundcloud.d.ts",
"scripts": {
"start": "bun start.ts",
"docs": "typedoc",
"build": "tsc",
"test": "ts-mocha --timeout 30000 -p tsconfig.json test/**/*.spec.ts",
"prepack": "bun run build",
"lint": "eslint src/**/*.ts",
"publish": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elluzion/soundcloud.ts.git"
},
"keywords": [
"soundcloud",
"typescript",
"ts",
"audio",
"music",
"api",
"api-v2",
"v2",
"download",
"downloader"
],
"author": "Moebits",
"contributors": [
"Skick (https://github.com/skick1234)",
"elluzion (https://github.com/elluzion)"
],
"license": "MIT",
"dependencies": {
"ffmpeg-static": "^5.2.0",
"prettier": "^3.5.0"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.12",
"chai": "^4.4.1",
"dotenv": "^16.4.5",
"eslint": "^9.20.1",
"globals": "^15.15.0",
"mocha": "^10.4.0",
"ts-mocha": "^10.0.0",
"typedoc": "^0.25.13",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0"
},
"directories": {
"doc": "docs",
"test": "test"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}