-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.79 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@ciphore/radiocli",
"version": "0.2.0",
"description": "A terminal-first world radio receiver built with Ink, mpv, and resilient public-radio providers.",
"type": "module",
"license": "MIT",
"author": "Ciphore",
"homepage": "https://github.com/Ciphore/RadioCLI#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Ciphore/RadioCLI.git"
},
"bugs": {
"url": "https://github.com/Ciphore/RadioCLI/issues"
},
"keywords": [
"terminal",
"tui",
"cli",
"radio",
"internet-radio",
"mpv",
"ink",
"react",
"radio-browser",
"playlist"
],
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"SECURITY.md",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md",
"docs"
],
"bin": {
"radiocli": "dist/cli.js"
},
"scripts": {
"dev": "tsx src/cli.tsx",
"clean": "node -e \"require('node:fs').rmSync('dist', {recursive: true, force: true})\"",
"build": "npm run clean && tsc -p tsconfig.build.json && node scripts/ensure-bin-executable.mjs",
"check": "tsc -p tsconfig.json --noEmit",
"check:unused": "tsc -p tsconfig.json --noEmit --noUnusedLocals --noUnusedParameters",
"check:whitespace": "node scripts/whitespace-check.mjs",
"check:exports": "knip",
"check:package": "publint",
"lint": "npm run check:unused && npm run check:whitespace && npm run check:exports",
"docs:dev": "npm --prefix apps/docs run dev",
"docs:build": "npm --prefix apps/docs run build",
"docs:check": "npm --prefix apps/docs run check",
"start": "node dist/cli.js",
"test": "vitest run",
"verify": "npm run check && npm run lint && npm run test && npm run build && npm run smoke:data",
"verify:release": "npm run verify && npm run smoke:playback && npm run pack:check && npm run fresh:check && npm run check:package",
"prepack": "npm run build",
"prepublishOnly": "npm run check && npm run lint && npm run test && npm run smoke:data && npm run fresh:check && npm run check:package",
"pack:check": "npm pack --dry-run",
"smoke:data": "tsx src/smoke/data-smoke.ts",
"smoke:playback": "tsx src/smoke/playback-smoke.ts",
"demo:script": "node scripts/demo-script.mjs",
"demo:assets": "node scripts/capture-demo-assets.mjs",
"fresh:check": "node scripts/fresh-check.mjs"
},
"dependencies": {
"ink": "^7.0.5",
"react": "^19.2.6",
"zod": "^4.4.3"
},
"overrides": {
"protobufjs": "^7.5.8"
},
"devDependencies": {
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"ink-testing-library": "^4.0.0",
"knip": "^6.14.2",
"publint": "^0.3.21",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
},
"engines": {
"node": ">=22"
},
"optionalDependencies": {
"node-airtunes2": "2.5.0"
}
}