Init a NPM project

This commit is contained in:
2024-02-25 13:20:36 +01:00
parent 6a4087e8cf
commit e46fbe2afa
7 changed files with 3247 additions and 6 deletions

17
package.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "cv",
"version": "1.0.0",
"description": "allanger's CV",
"main": "index.js",
"scripts": {
"test": "mdspell \"*.md\" -n -r",
"fix": "mdspell \"*.md\" -n",
"build": "md-to-pdf index.md --launch-options '{ \"args\": [\"--no-sandbox\"] }'"
},
"author": "",
"license": "ISC",
"dependencies": {
"markdown-spellcheck": "^1.3.1",
"md-to-pdf": "^5.2.4"
}
}