-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 1.9 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
{
"name": "@wave-av/cli",
"version": "1.0.10",
"description": "WAVE CLI: the terminal client for WAVE, media infrastructure for the agentic internet. Manage live streams, productions, and media routes from your terminal.",
"main": "./dist/index.js",
"type": "module",
"bin": {
"wave": "./dist/index.js"
},
"files": [
"dist",
"templates",
"README.md",
"CHANGELOG.md",
"LICENSE",
"NOTICE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"license:check": "node scripts/license-truth.mjs check",
"license:ledger": "node scripts/license-truth.mjs ledger",
"prepublishOnly": "npm run build"
},
"keywords": [
"wave",
"cli",
"streaming",
"video",
"broadcast",
"production",
"live",
"webrtc",
"srt",
"rtmp",
"terminal"
],
"author": "WAVE Online, LLC",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/wave-av/cli.git",
"directory": "."
},
"homepage": "https://docs.wave.online/cli",
"bugs": {
"url": "https://github.com/wave-av/cli/issues"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public",
"provenance": false,
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@wave-av/sdk": "2.1.3",
"chalk": "^6.0.0",
"cli-table3": "^0.6.5",
"commander": "^15.0.0",
"conf": "^15.0.0",
"inquirer": "^12.3.2",
"keytar": "^7.9.0",
"open": "^10.1.0",
"ora": "^8.2.0",
"ws": "^8.18.0",
"yaml": "^2.7.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@sentry/node": "^10.0.0",
"@types/inquirer": "^9.0.7",
"@types/node": "^26.0.0",
"@types/ws": "^8.5.14",
"tsup": "^8.0.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
}
}