advent-of-code-client
Version:
A NodeJS client for fetching inputs, running puzzle challenges and submitting answers to Advent Of Code directly from your JavaScript code.
46 lines (45 loc) • 1.25 kB
JSON
{
"name": "advent-of-code-client",
"version": "0.2.0",
"description": "A NodeJS client for fetching inputs, running puzzle challenges and submitting answers to Advent Of Code directly from your JavaScript code.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toblu/advent-of-code-client.git"
},
"keywords": [
"advent-of-code",
"adventofcode",
"aoc",
"advent",
"christmascoding"
],
"author": "Tobias Lundell",
"license": "ISC",
"bugs": {
"url": "https://github.com/toblu/advent-of-code-client/issues"
},
"homepage": "https://github.com/toblu/advent-of-code-client#readme",
"devDependencies": {
"@types/node": "^17.0.7",
"@types/node-fetch": "^2.5.12",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"prettier": "2.2.1",
"typescript": "^4.5.4"
},
"dependencies": {
"cache-conf": "^0.6.0",
"date-fns": "^2.16.1",
"emojic": "^1.1.16",
"node-fetch": "^2.6.1"
}
}