-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.42 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "ariaa",
"version": "1.4.2",
"description": "A CLI for music lovers",
"main": "dist/index.js",
"type": "module",
"exports": "./dist/index.js",
"bin": {
"aria": "./dist/index.js",
"ariaa": "./dist/index.js"
},
"imports": {
"#utils": "./dist/utils/index.js",
"#constants": "./dist/constants.js",
"#lib/*": "./dist/lib/*/index.js",
"#core": "./dist/core/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup",
"watch": "tsup --watch",
"bump": "cliff-jumper",
"format": "prettier --write './src/**/*.ts' './README.md'",
"pretty": "prettier --check './src/**/*.ts' './README.md'",
"typecheck": "tsc -b src",
"lint": "eslint --fix -c eslint.config.js",
"postinstall": "husky install",
"prepack": "yarn build && pinst --disable",
"postpack": "pinst --enable"
},
"keywords": [
"cli",
"music",
"spotify",
"youtube",
"song"
],
"files": [
"dist",
"!dist/*.tsbuildinfo",
"!dist/**/*.js.map",
"!dist/**/*.d.ts",
"!dist/**/*.d.ts.map"
],
"author": "EvolutionX-10",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/EvolutionX-10/Ariaa.git"
},
"engines": {
"node": ">=v16.6.0",
"npm": ">=7.0.0"
},
"bugs": {
"url": "https://github.com/EvolutionX-10/Ariaa/issues"
},
"homepage": "https://github.com/EvolutionX-10/Ariaa",
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@3.8.3",
"devDependencies": {
"@favware/cliff-jumper": "3.0.3",
"@favware/npm-deprecate": "1.0.7",
"@sapphire/eslint-config": "5.0.5",
"@sapphire/prettier-config": "2.0.0",
"@sapphire/ts-config": "5.0.1",
"@swc/core": "1.6.13",
"@types/cli-progress": "3.11.6",
"@types/fluent-ffmpeg": "2.1.24",
"@types/inquirer": "9.0.7",
"@types/node": "20.14.10",
"eslint": "9.6.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"husky": "9.0.11",
"pinst": "3.0.0",
"prettier": "3.3.2",
"pretty-quick": "4.0.0",
"tsup": "8.1.0",
"typescript": "5.5.3"
},
"dependencies": {
"@distube/ytdl-core": "^4.15.8",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"cli-progress": "3.12.0",
"colorette": "2.0.20",
"commander": "12.1.0",
"execa": "8.0.1",
"fluent-ffmpeg": "2.1.3",
"inquirer": "9.3.5",
"inquirer-select-directory": "1.2.0",
"ora": "8.0.1",
"sanitize-filename": "1.6.3",
"undici": "6.19.2",
"youtube-sr": "4.3.11"
},
"prettier": "@sapphire/prettier-config"
}