-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 5.2 KB
/
Copy pathpackage.json
File metadata and controls
136 lines (136 loc) · 5.2 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "sentry",
"version": "0.39.0-dev.0",
"repository": {
"type": "git",
"url": "git+https://github.com/getsentry/cli.git"
},
"main": "./dist/index.cjs",
"devDependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@biomejs/biome": "2.3.8",
"@clack/prompts": "0.11.0",
"@hono/node-server": "^2.0.6",
"@mastra/client-js": "^1.26.0",
"@sentry/api": "^0.180.0",
"@sentry/core": "10.50.0",
"@sentry/node-core": "10.50.0",
"@sentry/sqlish": "^1.0.1",
"@sentry/symbolic": "13.4.0",
"@spotlightjs/spotlight": "^4.11.7",
"@stricli/auto-complete": "^1.2.8",
"@stricli/core": "1.2.7",
"@types/http-cache-semantics": "^4.2.0",
"@types/node": "^22.20.0",
"@types/picomatch": "^4.0.3",
"@types/qrcode-terminal": "^0.12.2",
"@types/react": "^19.2.17",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "^4.1.9",
"chalk": "^5.6.2",
"cli-highlight": "^2.1.11",
"consola": "^3.4.2",
"esbuild": "^0.28.1",
"fast-check": "^4.8.0",
"fossilize": "^0.10.1",
"hono": "^4.12.27",
"http-cache-semantics": "^4.2.0",
"ignore": "^7.0.5",
"ink": "^7.1.0",
"ink-spinner": "^5.0.0",
"marked": "^15.0.12",
"p-limit": "^7.3.0",
"peggy": "^5.1.0",
"picomatch": "^4.0.4",
"pretty-ms": "^9.3.0",
"qrcode-terminal": "^0.12.0",
"react": "^19.2.7",
"react-devtools-core": "^7.0.1",
"semver": "^7.8.5",
"string-width": "^8.2.1",
"tinyglobby": "^0.2.17",
"tsx": "^4.22.4",
"typescript": "^5.9.3",
"ultracite": "6.3.10",
"uuidv7": "^1.2.1",
"vitest": "^4.1.9",
"wrap-ansi": "^10.0.0",
"zod": "^3.25.76"
},
"exports": {
".": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs",
"default": "./dist/index.cjs"
}
},
"bin": {
"sentry": "./dist/bin.cjs"
},
"description": "Sentry CLI - A command-line interface for using Sentry built by robots and humans for robots and humans",
"engines": {
"node": ">=22.15"
},
"files": [
"dist/bin.cjs",
"dist/index.cjs",
"dist/index.d.cts",
"dist/ink-app.js",
"dist/vendor/symbolic_bg.wasm"
],
"license": "FSL-1.1-Apache-2.0",
"packageManager": "pnpm@10.11.0",
"pnpm": {
"patchedDependencies": {
"@stricli/core": "patches/@stricli%2Fcore@1.2.7.patch",
"@sentry/node-core": "patches/@sentry%2Fnode-core@10.50.0.patch",
"@sentry/core": "patches/@sentry%2Fcore@10.50.0.patch"
},
"overrides": {
"esbuild@>=0.17.0 <0.28.1": "0.28.1",
"shell-quote@<1.8.4": "1.8.4",
"qs@>=6.11.1 <=6.15.1": "6.15.2",
"form-data@<4.0.6": "4.0.6",
"vite": "8.0.16"
},
"onlyBuiltDependencies": [
"esbuild"
]
},
"scripts": {
"tsx": "tsx --import ./script/require-shim.mjs",
"cli": "tsx --import ./script/require-shim.mjs src/bin.ts",
"dev": "pnpm run generate:schema && pnpm run generate:docs && pnpm run generate:sdk && tsx --import ./script/require-shim.mjs src/bin.ts",
"build": "pnpm run generate:schema && pnpm run generate:docs && pnpm run generate:sdk && pnpm tsx script/build.ts --single",
"build:all": "pnpm run generate:schema && pnpm run generate:docs && pnpm run generate:sdk && pnpm tsx script/build.ts",
"bundle": "pnpm run generate:schema && pnpm run generate:docs && pnpm run generate:sdk && pnpm tsx script/bundle.ts",
"typecheck": "pnpm run generate:docs && pnpm run generate:sdk && tsc --noEmit",
"lint": "biome check --no-errors-on-unmatched --max-diagnostics=none ./",
"lint:fix": "biome check --write --no-errors-on-unmatched --max-diagnostics=none ./",
"test": "pnpm run test:unit",
"test:unit": "pnpm run generate:docs && pnpm run generate:sdk && vitest run test/lib test/commands test/types --coverage",
"test:changed": "pnpm run generate:docs && pnpm run generate:sdk && vitest run --changed",
"test:e2e": "pnpm run generate:docs && pnpm run generate:sdk && vitest run test/e2e",
"test:init-eval": "vitest run test/init-eval --testTimeout 600000",
"generate:parser": "pnpm tsx script/generate-parser.ts",
"generate:sdk": "pnpm tsx script/generate-sdk.ts",
"generate:skill": "pnpm tsx script/generate-skill.ts",
"generate:docs": "pnpm run generate:parser && pnpm run generate:command-docs && pnpm run generate:skill && pnpm run generate:docs-sections",
"generate:docs-sections": "pnpm tsx script/generate-docs-sections.ts",
"generate:schema": "pnpm tsx script/generate-api-schema.ts",
"generate:command-docs": "pnpm tsx script/generate-command-docs.ts",
"eval:skill": "pnpm tsx script/eval-skill.ts",
"bench": "pnpm tsx script/bench.ts",
"bench:save": "pnpm tsx script/bench.ts --save-baseline",
"bench:compare": "pnpm tsx script/bench.ts --compare",
"bench:sweep": "pnpm tsx script/bench-sweep.ts",
"check:fragments": "pnpm tsx script/check-fragments.ts",
"check:deps": "pnpm tsx script/check-no-deps.ts",
"check:errors": "pnpm tsx script/check-error-patterns.ts",
"check:patches": "pnpm tsx script/check-patches.ts",
"check:docs-sections": "pnpm tsx script/generate-docs-sections.ts --check",
"check:stale-refs": "pnpm tsx script/check-stale-references.ts"
},
"type": "module",
"types": "./dist/index.d.cts"
}