-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.12 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
50
51
{
"name": "aoc",
"repository": "RealStr1ke/AoC",
"type": "module",
"peerDependencies": {
"typescript": "^5.7.2"
},
"dependencies": {
"@oclif/core": "^4.0.36",
"@oclif/plugin-autocomplete": "^3.2.13",
"@oclif/plugin-commands": "^4.1.13",
"@oclif/plugin-help": "^6.2.19",
"@oclif/plugin-not-found": "^3.2.30",
"@oclif/plugin-search": "^1.2.17",
"axios": "^1.7.9",
"chalk": "^5.3.0",
"cheerio": "^1.0.0",
"cli-spinner": "^0.2.10",
"colors": "^1.4.0",
"command-line-args": "^5.2.1",
"dijkstrajs": "^1.0.3",
"heap-js": "^2.5.0",
"inquirer": "^12.2.0",
"mathjs": "^12.4.3",
"statman-stopwatch": "^2.18.1",
"terminal-link": "^3.0.0",
"typescript-eslint": "^8.18.0",
"z3-solver": "^4.13.3"
},
"bin": {
"aocs": "./bin/run.js"
},
"oclif": {
"bin": "aocs",
"commands": "./src/commands",
"dirname": "AoC",
"topicSeparator": ":",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-search",
"@oclif/plugin-autocomplete",
"@oclif/plugin-commands"
]
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^18.19.68",
"ts-node": "^10.9.2"
}
}