days 1 and 2 from last year

This commit is contained in:
Joshua Seigler 2024-12-04 11:14:53 -05:00
commit a71ae9c4d7
No known key found for this signature in database
15 changed files with 2167 additions and 0 deletions

27
package.json Normal file
View file

@ -0,0 +1,27 @@
{
"name": "aoc2023",
"version": "1.0.0",
"description": "Advent of Code 2023 - solutions",
"type": "module",
"scripts": {
"start": "aocrunner day",
"build": "aocrunner build",
"format": "prettier -w src",
"update:readme": "aocrunner update:readme"
},
"keywords": [
"aoc"
],
"author": "Joshua Seigler",
"license": "ISC",
"devDependencies": {
"@types/node": "^16.11.6",
"aocrunner": "^1.10.0",
"eslint": "^9.16.0",
"prettier": "^2.8.0"
},
"dependencies": {},
"engines": {
"node": ">=16.13.0"
}
}