-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 857 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 857 Bytes
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
{
"name": "@cheemcheem/adventofcode",
"version": "1.0.0",
"private": true,
"engines": {
"node": "22"
},
"packageManager": "pnpm@9.14.4",
"scripts": {
"commit": "pnpm --filter @cheemcheem/adventofcode-commit-helper start",
"typecheck": "pnpm --filter=!@cheemcheem/adventofcode-type-config exec tsc --noEmit",
"lint": "eslint --fix .",
"prepare": "husky",
"start": "pnpm --filter @cheemcheem/adventofcode-challenge-runner start"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@stylistic/eslint-plugin": "^2.11.0",
"@types/node": "^22.10.1",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"typescript-eslint": "^8.17.0"
},
"lint-staged": {
"*.{js,jsx,mjs,ts,tsx,mts}": [
"eslint --fix"
]
},
"license": "GPL-3.0-only"
}