|
1 | 1 | { |
2 | 2 | "name": "sentry", |
3 | 3 | "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" |
27 | 7 | }, |
28 | 8 | "devDependencies": { |
29 | 9 | "@biomejs/biome": "2.3.8", |
|
43 | 23 | "esbuild": "^0.25.0", |
44 | 24 | "fast-check": "^4.5.3", |
45 | 25 | "ignore": "^7.0.5", |
| 26 | + "marked": "^15", |
| 27 | + "marked-terminal": "^7.3.0", |
46 | 28 | "p-limit": "^7.2.0", |
47 | 29 | "pretty-ms": "^9.3.0", |
48 | 30 | "qrcode-terminal": "^0.12.0", |
|
53 | 35 | "uuidv7": "^1.1.0", |
54 | 36 | "zod": "^3.24.0" |
55 | 37 | }, |
56 | | - "repository": { |
57 | | - "type": "git", |
58 | | - "url": "https://github.com/getsentry/cli.git" |
| 38 | + "bin": { |
| 39 | + "sentry": "./dist/bin.cjs" |
59 | 40 | }, |
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", |
61 | 42 | "engines": { |
62 | 43 | "node": ">=22" |
63 | 44 | }, |
| 45 | + "files": [ |
| 46 | + "dist/bin.cjs" |
| 47 | + ], |
| 48 | + "license": "FSL-1.1-Apache-2.0", |
64 | 49 | "packageManager": "bun@1.3.9", |
65 | 50 | "patchedDependencies": { |
66 | 51 | "@stricli/core@1.2.5": "patches/@stricli%2Fcore@1.2.5.patch" |
67 | 52 | }, |
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" |
72 | 70 | } |
0 commit comments