-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.41 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
{
"name": "del-repos",
"version": "1.1.1",
"bin": {
"del-repos": "dist/index.js"
},
"description": "A command-line tool for bulk deleting GitHub or Gitee repositories",
"main": "index.js",
"scripts": {
"lint": "pnpm tsc --pretty",
"build": "node scripts/build.js",
"dev": "npm run build && node dist/index.js"
},
"files": [
"dist",
"package.json",
"README.md",
"README.zh.md",
"snapshot.png"
],
"keywords": [
"Github",
"github",
"repositories",
"delete",
"batch",
"cli",
"gitee",
"Gitee",
"repos",
"del"
],
"author": "Ims",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/yaolifeng0629/del-repos.git"
},
"bugs": {
"url": "https://github.com/yaolifeng0629/del-repos/issues"
},
"homepage": "https://github.com/yaolifeng0629/del-repos#readme",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"axios": "^0.21.4",
"inquirer": "^8.2.6",
"kolorist": "^1.8.0",
"open": "^8.4.2",
"ora": "^5.4.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.14.7",
"@types/yargs": "^17.0.32",
"typescript": "^4.9.5"
}
}