-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.09 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.09 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
{
"name": "sentry",
"version": "0.14.0-dev.0",
"repository": {
"type": "git",
"url": "git+https://github.com/getsentry/cli.git"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@sentry/api": "^0.21.0",
"@sentry/bun": "10.39.0",
"@sentry/esbuild-plugin": "^2.23.0",
"@sentry/node": "10.39.0",
"@stricli/auto-complete": "^1.2.4",
"@stricli/core": "^1.2.4",
"@types/bun": "latest",
"@types/node": "^22",
"@types/qrcode-terminal": "^0.12.2",
"@types/semver": "^7.7.1",
"binpunch": "^1.0.0",
"chalk": "^5.6.2",
"cli-highlight": "^2.1.11",
"esbuild": "^0.25.0",
"fast-check": "^4.5.3",
"ignore": "^7.0.5",
"marked": "^15",
"p-limit": "^7.2.0",
"pretty-ms": "^9.3.0",
"qrcode-terminal": "^0.12.0",
"semver": "^7.7.3",
"string-width": "^8.2.0",
"tinyglobby": "^0.2.15",
"typescript": "^5",
"ultracite": "6.3.10",
"uuidv7": "^1.1.0",
"wrap-ansi": "^10.0.0",
"zod": "^3.24.0"
},
"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"
},
"files": [
"dist/bin.cjs"
],
"license": "FSL-1.1-Apache-2.0",
"packageManager": "bun@1.3.9",
"patchedDependencies": {
"@stricli/core@1.2.5": "patches/@stricli%2Fcore@1.2.5.patch"
},
"scripts": {
"dev": "bun run src/bin.ts",
"build": "bun run script/build.ts --single",
"build:all": "bun run script/build.ts",
"bundle": "bun run script/bundle.ts",
"typecheck": "tsc --noEmit",
"lint": "bunx ultracite check",
"lint:fix": "bunx ultracite fix",
"test": "bun run test:unit && bun run test:isolated",
"test:unit": "bun test test/lib test/commands test/types --coverage --coverage-reporter=lcov",
"test:isolated": "bun test test/isolated",
"test:e2e": "bun test test/e2e",
"generate:skill": "bun run script/generate-skill.ts",
"check:skill": "bun run script/check-skill.ts",
"check:deps": "bun run script/check-no-deps.ts"
},
"type": "module"
}