-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.45 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": "adventofcode",
"version": "0.0.1",
"private": true,
"type": "module",
"engines": {
"node": ">= 22.11.0",
"npm": ">= 10.9.0"
},
"volta": {
"node": "22.11.0",
"npm": "10.9.0"
},
"scripts": {
"test": "npm run tsc && npm run eslint:check && npm run prettier:check && type-coverage",
"fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:fix": "prettier --write --cache \"src/**/*.ts\" \".github/**/*.yml\" .eslintrc.cjs package.json tsconfig.json",
"prettier:check": "prettier --check --cache \"src/**/*.ts\" \".github/**/*.yml\" .eslintrc.cjs package.json tsconfig.json",
"tsc": "tsc --noEmit",
"eslint:fix": "eslint --fix --cache --cache-location ./target/.eslintcache src",
"eslint:check": "eslint --max-warnings=0 --report-unused-disable-directives --cache --cache-location ./target/.eslintcache src"
},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"cache": true,
"cacheDirectory": "target/.type-coverage"
},
"dependencies": {
"prettier": "3.3.3",
"tsx": "4.19.2",
"typescript": "5.7.2"
},
"devDependencies": {
"@types/node": "22.10.1",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"type-coverage": "2.29.7"
}
}