Skip to content

Commit c669f57

Browse files
committed
fix(deps): move marked/marked-terminal to devDependencies
1 parent 73276e5 commit c669f57

File tree

2 files changed

+31
-35
lines changed

2 files changed

+31
-35
lines changed

bun.lock

Lines changed: 2 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 29 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,9 @@
11
{
22
"name": "sentry",
33
"version": "0.13.0-dev.0",
4-
"description": "Sentry CLI - A command-line interface for using Sentry built by robots and humans for robots and humans",
5-
"type": "module",
6-
"bin": {
7-
"sentry": "./dist/bin.cjs"
8-
},
9-
"files": [
10-
"dist/bin.cjs"
11-
],
12-
"scripts": {
13-
"dev": "bun run src/bin.ts",
14-
"build": "bun run script/build.ts --single",
15-
"build:all": "bun run script/build.ts",
16-
"bundle": "bun run script/bundle.ts",
17-
"typecheck": "tsc --noEmit",
18-
"lint": "bunx ultracite check",
19-
"lint:fix": "bunx ultracite fix",
20-
"test": "bun run test:unit && bun run test:isolated",
21-
"test:unit": "bun test test/lib test/commands test/types --coverage --coverage-reporter=lcov",
22-
"test:isolated": "bun test test/isolated",
23-
"test:e2e": "bun test test/e2e",
24-
"generate:skill": "bun run script/generate-skill.ts",
25-
"check:skill": "bun run script/check-skill.ts",
26-
"check:deps": "bun run script/check-no-deps.ts"
4+
"repository": {
5+
"type": "git",
6+
"url": "https://github.com/getsentry/cli.git"
277
},
288
"devDependencies": {
299
"@biomejs/biome": "2.3.8",
@@ -43,6 +23,8 @@
4323
"esbuild": "^0.25.0",
4424
"fast-check": "^4.5.3",
4525
"ignore": "^7.0.5",
26+
"marked": "^15",
27+
"marked-terminal": "^7.3.0",
4628
"p-limit": "^7.2.0",
4729
"pretty-ms": "^9.3.0",
4830
"qrcode-terminal": "^0.12.0",
@@ -53,20 +35,36 @@
5335
"uuidv7": "^1.1.0",
5436
"zod": "^3.24.0"
5537
},
56-
"repository": {
57-
"type": "git",
58-
"url": "https://github.com/getsentry/cli.git"
38+
"bin": {
39+
"sentry": "./dist/bin.cjs"
5940
},
60-
"license": "FSL-1.1-Apache-2.0",
41+
"description": "Sentry CLI - A command-line interface for using Sentry built by robots and humans for robots and humans",
6142
"engines": {
6243
"node": ">=22"
6344
},
45+
"files": [
46+
"dist/bin.cjs"
47+
],
48+
"license": "FSL-1.1-Apache-2.0",
6449
"packageManager": "bun@1.3.9",
6550
"patchedDependencies": {
6651
"@stricli/core@1.2.5": "patches/@stricli%2Fcore@1.2.5.patch"
6752
},
68-
"dependencies": {
69-
"marked": "^15",
70-
"marked-terminal": "^7.3.0"
71-
}
53+
"scripts": {
54+
"dev": "bun run src/bin.ts",
55+
"build": "bun run script/build.ts --single",
56+
"build:all": "bun run script/build.ts",
57+
"bundle": "bun run script/bundle.ts",
58+
"typecheck": "tsc --noEmit",
59+
"lint": "bunx ultracite check",
60+
"lint:fix": "bunx ultracite fix",
61+
"test": "bun run test:unit && bun run test:isolated",
62+
"test:unit": "bun test test/lib test/commands test/types --coverage --coverage-reporter=lcov",
63+
"test:isolated": "bun test test/isolated",
64+
"test:e2e": "bun test test/e2e",
65+
"generate:skill": "bun run script/generate-skill.ts",
66+
"check:skill": "bun run script/check-skill.ts",
67+
"check:deps": "bun run script/check-no-deps.ts"
68+
},
69+
"type": "module"
7270
}

0 commit comments

Comments
 (0)