@bugbug-io/cli 13.39.1

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.
@@ -0,0 +1,7 @@
1
+ import {
2
+ render
3
+ } from "./chunk-UZVYEMEZ.js";
4
+ export {
5
+ render
6
+ };
7
+ //# sourceMappingURL=render-UGRPBJOT.js.map
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "@bugbug-io/cli",
3
+ "version": "13.39.1",
4
+ "type": "module",
5
+ "bin": {
6
+ "bugbug": "bin/bugbug.mjs"
7
+ },
8
+ "files": [
9
+ "bin/**/*",
10
+ "dist/**/*",
11
+ "!dist/**/*.map",
12
+ "README.md",
13
+ "AGENTS.md"
14
+ ],
15
+ "scripts": {
16
+ "dev": "cross-env NODE_ENV=development BUGBUG_API_URL=http://localhost:8000/api/v2/ tsx --conditions=development ./src/index.ts",
17
+ "start:qa": "cross-env NODE_ENV=development BUGBUG_API_URL=https://qa.bugbug.io/api/v2/ BUGBUG_APP_URL=https://qa.bugbug.io/rest tsx --conditions=development ./src/index.ts",
18
+ "start:staging": "cross-env NODE_ENV=development BUGBUG_API_URL=https://stage.bugbug.io/api/v2/ BUGBUG_APP_URL=https://stage.bugbug.io/rest tsx --conditions=development ./src/index.ts",
19
+ "start:production": "cross-env NODE_ENV=development BUGBUG_API_URL=https://app.bugbug.io/api/v2/ BUGBUG_APP_URL=https://app.bugbug.io/rest tsx --conditions=development ./src/index.ts",
20
+ "build": "tsup",
21
+ "prepublishOnly": "npm run build",
22
+ "start": "node dist/index.js",
23
+ "test": "vitest run --no-file-parallelism",
24
+ "test:watch": "vitest --watch ",
25
+ "test:ci": "cross-env CI=true vitest run --no-file-parallelism",
26
+ "coverage": "vitest run --coverage",
27
+ "typecheck": "tsc --noEmit",
28
+ "format:check": "oxfmt --check",
29
+ "oxlint:check": "oxlint .",
30
+ "oxlint:ci": "oxlint . --max-warnings=0",
31
+ "lint": "npm run format:check && npm run oxlint:check",
32
+ "lint:fix": "oxfmt && oxlint . --fix",
33
+ "lint:ci": "npm run format:check && npm run oxlint:ci",
34
+ "sentry:development": "./scripts/sentry-upload.sh ./dist development",
35
+ "sentry:qa": "./scripts/sentry-upload.sh ./dist qa",
36
+ "sentry:staging": "./scripts/sentry-upload.sh ./dist staging",
37
+ "sentry:production": "./scripts/sentry-upload.sh ./dist production"
38
+ },
39
+ "author": "BugBug.io",
40
+ "license": "MIT",
41
+ "dependencies": {
42
+ "@inkjs/ui": "^2.0.0",
43
+ "@sentry/node": "^10.62.0",
44
+ "commander": "^12.1.0",
45
+ "ink": "^6.3.0",
46
+ "ink-text-input": "^6.0.0",
47
+ "react": "19.1.1",
48
+ "react-router": "^7.9.4",
49
+ "yaml": "^2.8.4"
50
+ },
51
+ "devDependencies": {
52
+ "@bugbug-io/config": "*",
53
+ "@bugbug-io/core": "*",
54
+ "@bugbug-io/oxlint-config": "*",
55
+ "@bugbug-io/sdk": "*",
56
+ "ink-testing-library": "^4.0.0",
57
+ "tsup": "^8.1.0",
58
+ "tsx": "^4.19.3"
59
+ },
60
+ "engines": {
61
+ "node": ">=24"
62
+ }
63
+ }