-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.4 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "adventofcode",
"version": "1.0.0",
"description": "Advent of Code solutions and library",
"main": "aoc.ts",
"type": "module",
"scripts": {
"prepare": "husky install",
"start": "tsx aoc.ts",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint ./src/lib",
"lint:fix": "eslint ./src/lib --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EldoranDev/AdventOfCode.git"
},
"author": "Marcel Behrmann <[email protected]>",
"license": "mit",
"bugs": {
"url": "https://github.com/EldoranDev/AdventOfCode/issues"
},
"lint-staged": {
"src/lib/*.ts": "npm run lint",
"**/*": "prettier --write --ignore-unknown"
},
"homepage": "https://github.com/EldoranDev/AdventOfCode#readme",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"@types/yargs": "^17.0.33",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vitest": "^2.1.8"
},
"dependencies": {
"bignumber.js": "^9.1.2",
"clipboardy": "^4.0.0",
"deepcopy": "^2.1.0",
"winston": "^3.17.0",
"yargs": "^17.7.2",
"z3-solver": "^4.13.4"
},
"volta": {
"node": "23.4.0"
}
}