-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.33 KB
/
package.json
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
{
"name": "advent-of-code-2024",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"aoc": "node \"./test/testRunner.mjs\"",
"ts:check": "tsc",
"lint:check": "eslint . --ext .js,.ts,.cjs,.mjs --ignore-path .gitignore",
"lint:fix": "npm run lint:check -- --fix",
"format:check": "npm run prettier --- --check",
"format:fix": "npm run prettier --- --write",
"prettier": "prettier './**/*.{js,ts,mjs,cjs,json,md}' --ignore-path .gitignore",
"validate": "run-s --continue-on-error --print-name ts:check lint:check format:check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andre-brdoch/advent-of-code-2024.git"
},
"author": "Andre Brdoch",
"license": "ISC",
"bugs": {
"url": "https://github.com/andre-brdoch/advent-of-code-2024/issues"
},
"homepage": "https://github.com/andre-brdoch/advent-of-code-2024#readme",
"devDependencies": {
"@andre-brdoch/eslint-config": "1.0.1",
"@andre-brdoch/prettier-config": "0.0.1",
"@types/node": "22.9.3",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"consola": "3.2.3",
"eslint": "8.57.0",
"npm-run-all2": "7.0.1",
"prettier": "3.3.3",
"ts-node": "10.9.2",
"typescript": "5.6.3"
}
}