Skip to content

Commit a7616a5

Browse files
authored
changes made in json (#687)
1 parent 3ba186a commit a7616a5

File tree

1 file changed

+24
-14
lines changed

1 file changed

+24
-14
lines changed

package.json

Lines changed: 24 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,25 @@
11
{
2-
"dependencies": {
3-
"puppeteer": "^22.15.0"
4-
},
5-
"name": "awesome-github-profiles",
6-
"version": "1.0.0",
7-
"description": "<h2 align=\"center\">Awesome Github Profile</h2>",
8-
"main": "capture-screenshot.js",
9-
"scripts": {
10-
"test": "echo \"Error: no test specified\" && exit 1"
11-
},
12-
"keywords": [],
13-
"author": "",
14-
"license": "ISC"
15-
}
2+
"name": "awesome-github-profiles",
3+
"version": "1.0.0",
4+
"description": "A tool to capture screenshots of GitHub profiles automatically",
5+
"main": "capture-screenshot.js",
6+
"author": "Your Name <[email protected]>",
7+
"license": "ISC",
8+
"keywords": ["GitHub", "profile", "screenshot", "automation", "puppeteer"],
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/yourusername/awesome-github-profiles.git"
12+
},
13+
"dependencies": {
14+
"puppeteer": "^22.15.0"
15+
},
16+
"devDependencies": {
17+
"eslint": "^8.50.0"
18+
},
19+
"scripts": {
20+
"start": "node capture-screenshot.js",
21+
"build": "echo 'Building the project...'",
22+
"lint": "eslint . --fix",
23+
"test": "echo \"Error: no test specified\" && exit 1"
24+
}
25+
}

0 commit comments

Comments
 (0)