-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.5 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
{
"name": "tube-manager",
"version": "0.6.3",
"description": "Manage YouTube videos using command line.",
"engines": {
"node": ">=14.16"
},
"bin": {
"tube-manager": "./bin/tube-manager.js"
},
"type": "module",
"exports": "./build/index.js",
"files": [
"bin/",
"build/",
"package.json",
"schemas/",
"LICENCE",
"README.md"
],
"dependencies": {
"chalk": "^5.1.2",
"commander": "^9.4.1",
"fs-extra": "^10.1.0",
"got": "^12.5.3",
"hasha": "^5.2.2",
"inquirer": "^9.1.4",
"open": "^8.4.0",
"p-whilst": "^3.0.0",
"prettier": "^2.7.1",
"query-string": "^7.1.1"
},
"scripts": {
"code": "tsc -w",
"build": "rm -fr build/*; tsc",
"prepublishOnly": "npm run build",
"ncu": "ncu --target minor --upgrade"
},
"author": "Sun Knudsen <[email protected]>",
"license": "MIT",
"keywords": [
"cli",
"youtube"
],
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^9.0.3",
"@types/node": "^18.11.9",
"@types/prettier": "^2.7.1",
"npm-check-updates": "^16.4.1",
"typescript": "^4.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/sunknudsen/tube-manager.git"
},
"bugs": {
"url": "https://github.com/sunknudsen/tube-manager/issues"
},
"homepage": "https://github.com/sunknudsen/tube-manager#readme",
"prettier": {
"endOfLine": "lf",
"printWidth": 80,
"semi": false,
"tabWidth": 2,
"trailingComma": "es5"
}
}