-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·53 lines (53 loc) · 1.17 KB
/
package.json
File metadata and controls
executable file
·53 lines (53 loc) · 1.17 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
53
{
"name": "aoc",
"repository": "RealStr1ke/AoC",
"type": "module",
"peerDependencies": {
"typescript": "^5.7.2"
},
"dependencies": {
"@oclif/core": "^4.8.0",
"@oclif/plugin-autocomplete": "^3.2.39",
"@oclif/plugin-commands": "^4.1.38",
"@oclif/plugin-help": "^6.2.36",
"@oclif/plugin-not-found": "^3.2.73",
"@oclif/plugin-search": "^1.2.36",
"axios": "^1.13.2",
"chalk": "^5.6.2",
"cheerio": "^1.1.2",
"cli-spinner": "^0.2.10",
"colors": "^1.4.0",
"command-line-args": "^5.2.1",
"dijkstrajs": "^1.0.3",
"fs": "^0.0.1-security",
"heap-js": "^2.7.1",
"inquirer": "^12.11.1",
"mathjs": "^12.4.3",
"path": "^0.12.7",
"statman-stopwatch": "^2.18.1",
"terminal-link": "^3.0.0",
"typescript-eslint": "^8.48.0",
"z3-solver": "^4.15.4"
},
"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.130",
"ts-node": "^10.9.2"
}
}