sentry 0.2.0 → 0.3.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.
- package/README.md +42 -3
- package/dist/bin.cjs +497 -0
- package/package.json +11 -4
- package/dist/bin.mjs +0 -218
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sentry",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Sentry CLI - A command-line interface for using Sentry built by robots and humans for robots and humans",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"sentry": "./dist/bin.
|
|
7
|
+
"sentry": "./dist/bin.cjs"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
|
-
"dist/bin.
|
|
10
|
+
"dist/bin.cjs"
|
|
11
11
|
],
|
|
12
12
|
"scripts": {
|
|
13
13
|
"dev": "bun run src/bin.ts",
|
|
@@ -18,10 +18,13 @@
|
|
|
18
18
|
"lint": "bunx ultracite check",
|
|
19
19
|
"lint:fix": "bunx ultracite fix",
|
|
20
20
|
"test": "bun test",
|
|
21
|
+
"test:unit": "bun test test/lib test/commands test/types",
|
|
21
22
|
"test:e2e": "bun test test/e2e"
|
|
22
23
|
},
|
|
23
24
|
"devDependencies": {
|
|
24
25
|
"@biomejs/biome": "2.3.8",
|
|
26
|
+
"@sentry/esbuild-plugin": "^2.23.0",
|
|
27
|
+
"@sentry/node": "^10.36.0",
|
|
25
28
|
"@stricli/auto-complete": "^1.2.4",
|
|
26
29
|
"@stricli/core": "^1.2.4",
|
|
27
30
|
"@types/bun": "latest",
|
|
@@ -44,5 +47,9 @@
|
|
|
44
47
|
"engines": {
|
|
45
48
|
"node": ">=22"
|
|
46
49
|
},
|
|
47
|
-
"packageManager": "bun@1.3.3"
|
|
50
|
+
"packageManager": "bun@1.3.3",
|
|
51
|
+
"patchedDependencies": {
|
|
52
|
+
"@stricli/core@1.2.5": "patches/@stricli%2Fcore@1.2.5.patch",
|
|
53
|
+
"@sentry/core@10.36.0": "patches/@sentry%2Fcore@10.36.0.patch"
|
|
54
|
+
}
|
|
48
55
|
}
|