Updated all bookmarklets to just be functions and we can use utils/bookmarkletMaker.js to generate the bookmarklets in the console for now.

This commit is contained in:
Greg Jacobs
2024-06-12 13:04:47 -04:00
parent 3f25aef4f2
commit e2c5035011
26 changed files with 587 additions and 380 deletions

View File

@@ -3,12 +3,14 @@
"version": "0.0.1",
"description": "This project contains several files that perform various tasks. Here's a brief overview of each file:",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src --ext .js",
"lint:fix": "eslint src --ext .js --fix",
"format": "prettier src --write --ignore-unknown",
"readme": "node updateReadme.js"
"format": "prettier src --write --ignore-unknown",
"readme": "node src/utils/git/updateReadme.js",
"bookmark": "node src/utils/bookmarkletMaker.js"
},
"repository": {
"type": "git",
@@ -21,5 +23,10 @@
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.0"
},
"dependencies": {
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"json": "^11.0.0"
}
}