-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 883 Bytes
/
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
{
"name": "@kevicency/aoc2023",
"type": "module",
"author": {
"name": "Kevin Mees",
"url": "https://github.com/kevicency/aoc2023"
},
"module": "index.ts",
"scripts": {
"day": "bun --watch run scripts/run-day.ts",
"setup": "bun run scripts/setup-day.ts",
"submit": "bun run scripts/submit-day.ts",
"update:readme": "bun run scripts/update-readme.ts",
"lint": "eslint .",
"format": "eslint . --fix"
},
"dependencies": {
"@turf/turf": "^6.5.0",
"@types/common-tags": "^1.8.4",
"@types/ramda": "^0.29.9",
"common-tags": "^1.8.2",
"heap-js": "^2.3.0",
"ramda": "^0.29.1",
"typescript": "^5.3.2"
},
"devDependencies": {
"@types/jsdom": "^21.1.6",
"bun-types": "latest",
"chalk": "^5.3.0",
"eslint": "^8.54.0",
"jsdom": "^23.0.1",
"prettier": "^3.1.0",
"puppeteer": "^21.5.2"
}
}