-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 717 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 717 Bytes
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
{
"name": "algorithm-challenge-cli",
"module": "src/index.ts",
"type": "module",
"scripts": {
"prestart": "cd ./src/algorithms && bun link && bun link algorithm-challenge-cli",
"start": "algorithm"
},
"bin": {
"algorithm": "src/index.ts"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@types/bun": "latest",
"@types/chalk-animation": "^1.6.3",
"@types/inquirer": "^9.0.7",
"chalk": "^5.3.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@inquirer/prompts": "^5.0.5",
"@inquirer/select": "^2.3.5",
"chalk-animation": "^2.0.3",
"figlet": "^1.7.0",
"gradient-string": "^2.0.2",
"nanospinner": "^1.1.0"
}
}