UNPKG

aoc-automation

Version:

Advent of Code tool to automate the repetitive parts of AoC.

51 lines (50 loc) 1.25 kB
{ "name": "aoc-automation", "version": "2.1.16", "repository": "https://github.com/terryaney/aoc-automation", "description": "Advent of Code tool to automate the repetitive parts of AoC.", "main": "lib/index.js", "bin": "lib/cli.js", "type": "module", "scripts": { "dev": "node scripts/build.js --watch", "build": "node scripts/build.js", "format": "prettier -w src", "prepublishOnly": "npm run build" }, "keywords": [ "aoc", "advent of code", "runner", "automation", "template", "advent" ], "author": "Terry Aney", "license": "ISC", "devDependencies": { "@types/common-tags": "^1.8.1", "@types/express": "^4.17.14", "@types/jsdom": "^20.0.1", "@types/node": "^18.11.10", "@types/prompts": "^2.4.1", "express": "^4.18.2", "prettier": "^2.8.0", "ts-node": "^10.9.1" }, "dependencies": { "chokidar": "^3.5.3", "common-tags": "^1.8.2", "dotenv": "^16.0.3", "esbuild": "^0.15.16", "jsdom": "^20.0.3", "kleur": "^4.1.5", "node-fetch": "^3.3.0", "prompts": "^2.4.2", "tslib": "^2.4.1", "typescript": "^4.9.3" }, "engines": { "node": ">=16.13.0" } }