Files
klz-cables.com/.pnpm-store/v10/files/9d/ae2d3c5642683934cd0f35624147cb798cfb4d665b4d125b02980bc93ccef4688851e160c8680cd452b6e1ce5c5611a41bf38a166cc3d7f0c95932bd30ef1a
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

75 lines
2.2 KiB
Plaintext

{
"name": "@sentry/cli",
"version": "2.58.4",
"description": "A command line utility to work with Sentry. https://docs.sentry.io/hosted/learn/cli/",
"repository": "git://github.com/getsentry/sentry-cli.git",
"homepage": "https://docs.sentry.io/hosted/learn/cli/",
"author": "Sentry",
"license": "FSL-1.1-MIT",
"engines": {
"node": ">= 10"
},
"main": "js/index.js",
"types": "js/index.d.ts",
"bin": {
"sentry-cli": "bin/sentry-cli"
},
"dependencies": {
"https-proxy-agent": "^5.0.0",
"node-fetch": "^2.6.7",
"progress": "^2.0.3",
"proxy-from-env": "^1.1.0",
"which": "^2.0.2"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@vercel/nft": "^0.22.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"prettier": "2.8.8",
"typescript": "5.8.3"
},
"optionalDependencies": {
"@sentry/cli-darwin": "2.58.4",
"@sentry/cli-linux-arm": "2.58.4",
"@sentry/cli-linux-arm64": "2.58.4",
"@sentry/cli-linux-i686": "2.58.4",
"@sentry/cli-linux-x64": "2.58.4",
"@sentry/cli-win32-i686": "2.58.4",
"@sentry/cli-win32-x64": "2.58.4",
"@sentry/cli-win32-arm64": "2.58.4"
},
"scripts": {
"postinstall": "node ./scripts/install.js",
"build": "tsc",
"install-cli": "node ./scripts/install.js",
"prepack": "npm run build",
"fix": "npm-run-all fix:eslint fix:prettier",
"fix:eslint": "eslint --fix bin/* scripts/**/*.js lib/**/*.js",
"fix:prettier": "prettier --write bin/* scripts/**/*.js lib/**/*.js",
"test": "npm-run-all test:jest test:eslint test:prettier test:vercel-nft",
"test:jest": "jest",
"test:watch": "jest --watch --notify",
"test:eslint": "eslint bin/* scripts/**/*.js lib/**/*.js",
"test:prettier": "prettier --check bin/* scripts/**/*.js lib/**/*.js",
"check:types": "tsc --noEmit",
"test:vercel-nft": "node scripts/test-vercel-nft.js"
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/src"
]
},
"volta": {
"node": "24.8.0",
"npm": "11.6.0"
},
"overrides": {
"browserslist": "<4.26.0 || >4.26.0"
}
}