-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
49 lines (49 loc) · 1.11 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
43
44
45
46
47
48
49
{
"name": "aocrunner",
"version": "1.10.0",
"repository": "https://github.com/caderek/aocrunner",
"description": "Advent of Code runner",
"main": "lib/index.js",
"bin": "lib/cli.js",
"type": "module",
"scripts": {
"dev": "node scripts/build.js --watch",
"build": "node scripts/build.js",
"format": "prettier -w src",
"prepublishOnly": "npm run build"
},
"keywords": [
"aoc",
"advent of code",
"runner",
"template",
"advent"
],
"author": "Maciej Caderek",
"license": "ISC",
"devDependencies": {
"@types/common-tags": "^1.8.4",
"@types/express": "^4.17.21",
"@types/jsdom": "^20.0.1",
"@types/node": "^18.19.67",
"@types/prompts": "^2.4.9",
"express": "^4.21.1",
"prettier": "^2.8.8",
"ts-node": "^10.9.2"
},
"dependencies": {
"chokidar": "^3.6.0",
"common-tags": "^1.8.2",
"dotenv": "^16.4.5",
"esbuild": "^0.15.18",
"jsdom": "^20.0.3",
"kleur": "^4.1.5",
"node-fetch": "^3.3.2",
"prompts": "^2.4.2",
"tslib": "^2.8.1",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=16.13.0"
}
}