-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.23 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
{
"name": "@yaaaarn/downcloud",
"description": "a simple (and fast) soundcloud downloader",
"keywords": ["music", "cli", "downloader", "soundcloud", "soundcloud-music-downloader", "soundcloud-downloader"],
"module": "src/index.ts",
"types": "src/lib.ts",
"type": "module",
"version": "2.0.0",
"license": "GPL-3.0-or-later",
"repository": "github:yaaaarn/downcloud",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": "./src/lib.ts",
"types": "./src/lib.ts"
}
},
"devDependencies": {
"@types/bun": "latest",
"@types/commander": "^2.12.5"
},
"peerDependencies": {
"typescript": "^5"
},
"bin": {
"downcloud": "src/index.ts"
},
"files": [
"src",
"README.md",
"LICENSE"
],
"scripts": {
"start": "bun run src/index.ts",
"build": "bun build --compile --minify src/index.ts --outfile downcloud",
"prepublishOnly": "bun run tsc --noEmit",
"release:patch": "npm version patch && git push && git push --tags",
"release:minor": "npm version minor && git push && git push --tags",
"release:major": "npm version major && git push && git push --tags"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^15.0.0"
}
}