-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.16 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.16 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
48
49
50
51
{
"name": "userfetch",
"version": "1.8.0",
"description": "super customizable, neofetch inspired tool to display github user stats",
"main": "index.js",
"type": "module",
"bin": "./dist/bin/cli.js",
"files": [
"dist/**/*",
"stubs/**/*"
],
"scripts": {
"build": "tsc",
"test": "node dist/bin/cli.js --ci -c stubs/config.mjs -s temp/out.svg"
},
"repository": {
"type": "git",
"url": "git+https://github.com/userfetch/userfetch.js.git"
},
"author": "aryan02420",
"license": "MIT",
"bugs": {
"url": "https://github.com/userfetch/userfetch.js/issues"
},
"homepage": "https://userfetch.js.org",
"keywords": [
"neofetch",
"github-api",
"github-profile",
"cli"
],
"dependencies": {
"@octokit/graphql": "^4.8.0",
"anser": "^2.1.0",
"chalk": "^4.1.2",
"dotenv": "^10.0.0",
"inquirer": "^8.1.5",
"jsdom": "^20.0.0",
"ora": "^6.0.1",
"strip-ansi": "^7.0.1",
"table": "^6.7.2",
"wrap-ansi": "^8.0.1",
"yargs": "^17.2.1"
},
"devDependencies": {
"@types/jsdom": "^20.0.0",
"@types/node": "^16.11.7",
"@types/yargs": "^17.0.5",
"typescript": "^4.8.3"
}
}