UNPKG

aoc-utils

Version:

Utilities for programatically interacting with Advent of Code

50 lines 1.26 kB
{ "name": "aoc-utils", "author": "Chris Carrick <chris@crcarrick.dev>", "description": "Utilities for programatically interacting with Advent of Code", "version": "1.0.4", "license": "MIT", "main": "dist/main/index.js", "module": "dist/module/index.js", "typings": "dist/main/index.d.ts", "repository": "https://github.com/crcarrick/aoc-utils", "keywords": [ "Advent", "Code", "Advent of Code", "AOC", "2022", "2023" ], "files": [ "dist/main/**/*", "dist/module/**/*", "!**/*.test.*", "!**/*.json", "LICENSE", "README.md" ], "scripts": { "build": "yarn build:main & yarn build:module", "build:main": "tsc -p tsconfig.json", "build:module": "tsc -p tsconfig.module.json", "test": "vitest --coverage" }, "devDependencies": { "@rollup/plugin-typescript": "^11.0.0", "@types/node": "^18.15.0", "@types/node-fetch": "^2.6.2", "@typescript-eslint/eslint-plugin": "^5.54.1", "@typescript-eslint/parser": "^5.54.1", "@vitest/coverage-c8": "^0.29.2", "eslint": "^8.35.0", "msw": "^1.1.0", "prettier": "^2.8.4", "typescript": "^4.9.5", "vite": "^4.1.4", "vitest": "^0.29.2" }, "dependencies": { "node-fetch": "2.6.6" } }