-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.92 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.92 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
{
"name": "ketchup",
"version": "0.23.0",
"private": true,
"authors": [
{
"name": "Sam Hatoum"
}
],
"description": "LLM-powered guardrails for Claude Code. Turn every AI mistake into a rule AI can't repeat.",
"repository": {
"type": "git",
"url": "https://github.com/BeOnAuto/ketchup.git"
},
"scripts": {
"build": "tsc && pnpm build:bundle",
"build:bundle": "esbuild scripts/session-start.ts scripts/pre-tool-use.ts scripts/user-prompt-submit.ts scripts/config.ts scripts/init.ts --bundle --platform=node --target=node18 --format=cjs --outdir=dist/bundle/scripts --external:typescript",
"test": "vitest run",
"test:watch": "vitest",
"type-check": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"check": "turbo run build type-check test && pnpm lint",
"changeset": "changeset",
"version": "changeset version",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,json,md}": [
"biome check --write --no-errors-on-unmatched"
]
},
"author": "Sam Hatoum",
"license": "MIT",
"dependencies": {
"gray-matter": "^4.0.3",
"micromatch": "^4.0.8"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@types/micromatch": "^4.0.10",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^1.6.1",
"esbuild": "^0.27.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"tsx": "^4.0.0",
"turbo": "^2.7.5",
"typescript": "^5.0.0",
"vitepress": "^1.6.4",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.28.0"
}