{ "name": "aoc-to-markdown", "version": "1.4.1", "description": "Converts a given Advent of Code page to a GitHub-compatible Markdown file.", "repository": "github:kfarnung/aoc-to-markdown", "scripts": { "build": "npm run compile && npm run build-chrome && npm run build-firefox", "build-chrome": "web-ext build -n aoc-to-markdown-chrome.zip -s addon/chrome --overwrite-dest", "build-firefox": "web-ext build -n aoc-to-markdown-firefox.zip -s addon/firefox --overwrite-dest", "compile": "webpack && npm run genmanifest && npm run copyicons", "copyicons": "node ./tools/copyicons.js", "genmanifest": "node ./tools/genmanifest.js", "lint": "eslint . && npm run compile && web-ext lint -s addon/firefox", "lint-fix": "eslint . --fix", "prepare": "npm run compile", "prestart": "npm run compile", "pretest": "npm run compile", "start": "web-ext run -s ./addon/firefox", "test": "echo \"Error: no test specified\" && exit 1", "version": "npm run genmanifest" }, "license": "MIT", "devDependencies": { "eslint": "^8.4.0", "web-ext": "^8.2.0", "webextension-polyfill": "^0.10.0", "webpack": "^5.94.0", "webpack-cli": "^5.0.0" }, "dependencies": { "turndown": "^7.1.1", "turndown-plugin-gfm": "^1.0.2" } }