-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 813 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 813 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
31
{
"name": "willhaben-cli",
"version": "0.0.1",
"description": "CLI for managing willhaben.at listings via the mobile app API",
"type": "module",
"main": "src/index.ts",
"bin": {
"willhaben": "./src/index.ts"
},
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build ./src/index.ts --compile --outfile willhaben",
"typecheck": "tsc --noEmit",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"ora": "^8.0.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/bun": "latest",
"@types/prompts": "^2.4.9",
"typescript": "^5.4.5",
"vitepress": "^1.6.4"
},
"packageManager": "yarn@1.22.22"
}