@switchboard.spot/cli 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@switchboard.spot/cli",
3
+ "version": "0.2.0",
4
+ "description": "Switchboard CLI — full dashboard parity for agents and testing",
5
+ "type": "module",
6
+ "bin": {
7
+ "switchboard": "bin/switchboard.js"
8
+ },
9
+ "exports": {
10
+ "./verify": "./lib/verify/index.js"
11
+ },
12
+ "scripts": {
13
+ "build": "rm -rf dist && mkdir -p dist && npm pack --pack-destination dist",
14
+ "publish:dry-run": "npm publish --dry-run --access public",
15
+ "publish:npm": "npm publish --access public",
16
+ "test": "node --test test/*.test.js",
17
+ "coverage": "node --test --experimental-test-coverage --test-coverage-include='bin/**/*.js' --test-coverage-include='lib/**/*.js' test/*.test.js"
18
+ },
19
+ "dependencies": {
20
+ "commander": "^13.1.0",
21
+ "playwright": "^1.61.0"
22
+ },
23
+ "files": [
24
+ "bin/",
25
+ "lib/",
26
+ "README.md",
27
+ "LICENSE"
28
+ ],
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "git+https://github.com/switchboard-dev/switchboard.git",
32
+ "directory": "packages/cli"
33
+ },
34
+ "keywords": [
35
+ "switchboard",
36
+ "openai",
37
+ "ai",
38
+ "gateway",
39
+ "cli",
40
+ "billing"
41
+ ],
42
+ "engines": {
43
+ "node": ">=18"
44
+ },
45
+ "publishConfig": {
46
+ "access": "public"
47
+ },
48
+ "license": "SEE LICENSE IN LICENSE"
49
+ }