-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 982 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 982 Bytes
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
{
"name": "github-pewpew",
"version": "1.4.0",
"description": "Clean up and remove those unnecessary GitHub repositories (and more). Pew pew!",
"main": "index.js",
"type": "module",
"bin": {
"ghpew": "index.js"
},
"files": [
"index.js",
"src"
],
"scripts": {
"start": "node index.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adrianmg/github-pewpew.git"
},
"keywords": [
"github",
"pewpew",
"utility",
"delete",
"repositories",
"codespaces",
"cli"
],
"author": "Adrian Mato (https://adrianmato.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/adrianmg/github-pewpew/issues"
},
"homepage": "https://github.com/adrianmg/github-pewpew",
"dependencies": {
"@octokit/auth-oauth-device": "^8.0.1",
"clipboardy": "^4.0.0",
"enquirer": "^2.4.1",
"ora": "^8.2.0"
},
"devDependencies": {
"mocha": "^11.7.1"
}
}