-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.32 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.32 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "node-advent-of-code",
"version": "2.0.0",
"type": "module",
"description": "Advent of code - https://adventofcode.com/",
"main": "src/index.ts",
"scripts": {
"start": "node --experimental-strip-types src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Mike Kitzman",
"license": "MIT",
"bin": {
"aoc": "src/index.ts"
},
"repository": {
"type": "git",
"url": "git@github.com:mdkitzman/node-advent-of-code.git"
},
"dependencies": {
"@types/chalk": "2.2.0",
"@types/commander": "2.12.2",
"@types/figlet": "1.7.0",
"@types/lodash": "4.17.13",
"@types/luxon": "3.4.2",
"@types/node": "22.13.8",
"chalk": "4.1.2",
"commander": "9.4.1",
"cytoscape": "3.33.1",
"dotenv": "16.4.5",
"es-iter": "1.1.2",
"fast-astar": "1.0.6",
"figlet": "1.8.0",
"graphlib": "2.1.8",
"graphology": "0.25.4",
"graphology-shortest-path": "2.1.0",
"graphology-traversal": "0.3.1",
"graphology-types": "0.24.8",
"infix-to-postfix": "0.0.3",
"lodash-es": "4.17.23",
"luxon": "3.5.0",
"nearley": "2.20.1",
"node-html-markdown": "1.3.0",
"node-html-parser": "6.1.11",
"rpn": "4.0.0",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"devDependencies": {
"@types/graphlib": "2.1.12"
}
}