-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.43 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.43 KB
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
41
42
43
44
45
46
47
48
49
50
{
"name": "advent-of-code",
"version": "1.0.0",
"private": true,
"description": "JS Solutions for Advent Of Code",
"main": "startAll.js",
"type": "module",
"engines": {
"bun": ">=1.3.0"
},
"packageManager": "bun@1.3.0",
"scripts": {
"start:2025": "bun ./scripts/start_all.js 2025",
"start:2024": "bun ./scripts/start_all.js 2024",
"start:2023": "bun ./scripts/start_all.js 2023",
"start:2022": "bun ./scripts/start_all.js 2022",
"start:2021": "bun ./scripts/start_all.js 2021",
"start:2020": "bun ./start_all.js 2020",
"start:2019": "bun ./scripts/start_all.js 2019",
"start:all": "bun ./scripts/start_all.js",
"start:today": "bun ./scripts/start_all.js today",
"prepare-today": "bun ./scripts/prepare_day.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"generate-config": "bun ./scripts/generate-config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NullDev/Advent-of-Code.git"
},
"author": "NullDev",
"license": "MIT",
"bugs": {
"url": "https://github.com/NullDev/Advent-of-Code/issues"
},
"homepage": "https://github.com/NullDev/Advent-of-Code#readme",
"peerDependencies": {
"typescript": "^5"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/eslint-parser": "^7.28.5",
"@types/bun": "^1.3.3",
"eslint": "^9.39.1"
},
"dependencies": {
"cheerio": "^1.1.2",
"ws": "^8.18.3"
}
}