-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.36 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.36 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
51
52
53
54
{
"name": "adventofcode",
"version": "1.0.0",
"description": "Advent of Code solutions and library",
"main": "aoc.ts",
"type": "module",
"scripts": {
"start": "tsx aoc.ts",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint ./src/lib",
"lint:fix": "eslint ./src/lib --fix",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EldoranDev/AdventOfCode.git"
},
"author": "Marcel Behrmann <info@eldoran.dev>",
"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.39.0",
"@types/node": "^24.10.1",
"@types/yargs": "^17.0.35",
"@vitest/coverage-v8": "^4.0.14",
"eslint": "^9.39.1",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "3.7.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0",
"vitest": "^4.0.4"
},
"dependencies": {
"bignumber.js": "^9.3.1",
"clipboardy": "^5.0.0",
"winston": "^3.18.3",
"yargs": "^18.0.0",
"z3-solver": "^4.15.4"
},
"volta": {
"node": "25.2.1"
}
}