-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.98 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
{
"name": "@clerk/break-check",
"version": "0.6.0",
"description": "Detect API breaking changes in TypeScript packages",
"type": "module",
"packageManager": "pnpm@11.2.2+sha512.36e6621fad506178936455e70247b8808ef4ec25797a9f437a93281a020484e2607f6a469a22e982987c3dbb8866e3071514ab10a4a1749e06edcd1ec118436f",
"bin": {
"break-check": "./dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"changeset": "changeset",
"check": "pnpm check:format && pnpm typecheck && pnpm test && pnpm pack --dry-run",
"check:format": "prettier --check .",
"clean": "rm -rf dist",
"dev": "tsc --watch",
"format": "prettier --write .",
"lint:action-pins": "node scripts/check-action-pins.mjs",
"lint:actions": "node scripts/lint-action-shell.mjs",
"prepare": "pnpm build",
"release": "pnpm build && changeset publish",
"start": "node dist/index.js",
"test": "pnpm build && node --test test/*.test.mjs",
"typecheck": "tsc --noEmit",
"version": "changeset version"
},
"keywords": [
"cli",
"break-check",
"api",
"breaking-changes",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/clerk/break-check.git"
},
"bugs": {
"url": "https://github.com/clerk/break-check/issues"
},
"homepage": "https://github.com/clerk/break-check#readme",
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@types/node": "25.9.1",
"prettier": "3.8.3",
"typescript": "6.0.3",
"yaml": "^2.9.0"
},
"engines": {
"node": ">=22.13"
},
"dependencies": {
"@anthropic-ai/sdk": "0.115.0",
"@microsoft/api-extractor": "7.58.7",
"commander": "15.0.0",
"zod": "4.4.3"
}
}