-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.05 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.05 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
{
"name": "advent-of-code-boilerplate",
"version": "1.0.0",
"description": "Boilerplate workspace for advent of code puzzle",
"main": "index.ts",
"type": "module",
"scripts": {
"test": "node --test src/index.test.ts",
"test:bun": "bun test src/index.test.ts",
"start": "node src/index.ts",
"start:bun": "bun src/index.ts",
"start:dev": "node --watch src/index.ts",
"start:dev:bun": "bun --watch src/index.ts",
"init-day": "bun src/scripts/initNewDay/initNewDay.ts",
"lint": "biome lint src",
"lint:fix": "biome lint --write src",
"format": "biome format src",
"format:fix": "biome format --write src",
"check": "biome check src",
"check:fix": "biome check --write src"
},
"author": "Francesco Maida",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.3.7",
"@types/node": "^24.10.1",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.23.0+sha512.21c4e5698002ade97e4efe8b8b4a89a8de3c85a37919f957e7a0f30f38fbc5bbdd05980ffe29179b2fb6e6e691242e098d945d1601772cad0fef5fb6411e2a4b"
}