-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 4.85 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 4.85 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
{
"name": "sentry",
"version": "0.35.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.0",
"@mastra/client-js": "^1.4.0",
"@sentry/api": "^0.141.0",
"@sentry/core": "10.50.0",
"@sentry/node-core": "10.50.0",
"@sentry/sqlish": "^1.0.0",
"@spotlightjs/spotlight": "^4.11.3",
"@stricli/auto-complete": "^1.2.4",
"@stricli/core": "^1.2.4",
"@types/http-cache-semantics": "^4.2.0",
"@types/node": "^22",
"@types/picomatch": "^4.0.3",
"@types/qrcode-terminal": "^0.12.2",
"@types/react": "^19.2.14",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "^4.1.7",
"chalk": "^5.6.2",
"cli-highlight": "^2.1.11",
"consola": "^3.4.2",
"esbuild": "^0.25.0",
"fast-check": "^4.5.3",
"fossilize": "^0.8.1",
"hono": "^4.12.15",
"http-cache-semantics": "^4.2.0",
"ignore": "^7.0.5",
"ink": "^7.0.1",
"ink-spinner": "^5.0.0",
"marked": "^15",
"p-limit": "^7.2.0",
"peggy": "^5.1.0",
"picomatch": "^4.0.3",
"pretty-ms": "^9.3.0",
"qrcode-terminal": "^0.12.0",
"react": "^19.2.5",
"react-devtools-core": "^7.0.1",
"semver": "^7.7.3",
"string-width": "^8.2.0",
"tinyglobby": "^0.2.15",
"tsx": "^4.22.3",
"typescript": "^5",
"ultracite": "6.3.10",
"uuidv7": "^1.1.0",
"vitest": "^4.1.7",
"wrap-ansi": "^10.0.0",
"zod": "^3.24.0"
},
"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"
],
"license": "FSL-1.1-Apache-2.0",
"packageManager": "pnpm@10.11.0",
"pnpm": {
"patchedDependencies": {
"@stricli/core": "patches/@stricli%2Fcore@1.2.5.patch",
"@sentry/node-core": "patches/@sentry%2Fnode-core@10.50.0.patch",
"@sentry/core": "patches/@sentry%2Fcore@10.50.0.patch"
},
"onlyBuiltDependencies": [
"esbuild"
]
},
"scripts": {
"tsx": "tsx --import ./script/require-shim.mjs",
"cli": "pnpm tsx src/bin.ts",
"dev": "pnpm run generate:schema && pnpm run generate:docs && pnpm run generate:sdk && pnpm tsx 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"
}