-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.36 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
{
"name": "vaia-flashcards-uploader",
"version": "1.0.0",
"description": "A Puppeteer automation project to upload flashcards to the Vaia study platform. This tool was created during my university days when I needed to study for exams. Instead of manually entering each question, I would generate questions using ChatGPT and use this script to automate the uploading process, saving a lot of time and effort.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"lint": "eslint .",
"format": "prettier --write .",
"test": "echo \"No test specified\" && exit 0"
},
"keywords": [
"puppeteer",
"automation",
"flashcards",
"vaia",
"web-scraping",
"study",
"university",
"exam-preparation",
"chatgpt"
],
"author": "pcurz",
"license": "GPL-3.0-only",
"dependencies": {
"puppeteer": "^23.4.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2"
},
"devDependencies": {
"eslint": "^7.32.0",
"nodemon": "^2.0.7",
"prettier": "^2.4.1"
},
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/pcurz/VaiaFlashcardsUploader"
},
"bugs": {
"url": "https://github.com/pcurz/VaiaFlashcardsUploader/issues"
},
"homepage": "https://github.com/pcurz/VaiaFlashcardsUploader#readme"
}