-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.19 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
{
"name": "adorable-radios",
"version": "1.0.0",
"description": "Your terminal audio companion for streaming internet radio",
"main": "dist/cli.js",
"bin": {
"adorable-radios": "./dist/cli.js"
},
"type": "module",
"scripts": {
"dev": "tsx src/cli.tsx",
"dev:watch": "tsx watch src/cli.tsx",
"build": "tsc",
"start": "node dist/cli.js",
"typecheck": "tsc --noEmit",
"lint": "biome check . && eslint src",
"lint:fix": "biome check --write . && eslint --fix src",
"format": "biome format --write ."
},
"keywords": [
"radio",
"streaming",
"cli",
"terminal",
"music"
],
"author": "",
"license": "MIT",
"dependencies": {
"@tanstack/react-query": "^5.90.11",
"commander": "^11.1.0",
"conf": "^12.0.0",
"ink": "^4.4.1",
"ink-select-input": "^5.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^5.0.1",
"react": "^18.2.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.7",
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@typescript-eslint/parser": "^8.48.0",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}