-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 934 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "adventofcode",
"version": "1.0.0",
"description": "These are my solutions in TypeScript/JavaScript of the Advent of Code in different years. Have a wonderful christmas! 🎄🎄🎄",
"homepage": "https://github.com/xHeitkamp/AdventOfCode",
"main": "index.js",
"scripts": {
"start": "ts-node index.ts",
"build": "tsc",
"day": "ts-node util/dayRunner.ts",
"init": "ts-node util/createDay.ts",
"test": "ts-node util/testRunner.ts"
},
"config": {
"year": 2025
},
"keywords": [
"advent-of-code",
"advent-of-code-2023",
"advent-of-code-2024",
"advent-of-code-2025",
"aoc",
"aoc-2023",
"aoc-2024",
"aoc-2025"
],
"author": "xHeitkamp(Robin Behlke)",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.19.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"axios": "^1.7.8",
"cheerio": "^1.1.2",
"compute-lcm": "^1.1.2",
"dotenv": "^16.4.5"
}
}