-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.76 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
75
76
77
78
79
80
81
82
{
"name": "@ryonakae/shepherd",
"version": "0.6.0",
"description": "Agent history daemon and runtime bridges for Herdr-managed coding agents.",
"type": "module",
"files": [
"dist",
"drizzle"
],
"publishConfig": {
"access": "public"
},
"bin": {
"shepherd": "dist/src/cli/shepherd.js"
},
"keywords": [
"herdr",
"pi-coding-agent",
"herdr-plugin",
"pi-extension"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ryonakae/shepherd.git"
},
"bugs": {
"url": "https://github.com/ryonakae/shepherd/issues"
},
"homepage": "https://github.com/ryonakae/shepherd#readme",
"packageManager": "pnpm@11.9.0",
"engines": {
"node": ">=24.18.0",
"pnpm": ">=11.9.0"
},
"scripts": {
"build": "pnpm clean:dist && tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"changelog:check": "node scripts/release-notes.mjs check",
"check": "pnpm typecheck && pnpm test && pnpm lint && pnpm format:check && pnpm db:check && pnpm package:check && pnpm pi-package:check && pnpm herdr-plugin:check && pnpm changelog:check",
"clean:dist": "node scripts/clean-dist.mjs",
"db:check": "drizzle-kit check --config drizzle.config.ts",
"db:generate": "drizzle-kit generate --config drizzle.config.ts",
"db:migrate": "tsx src/db/migrate.ts",
"format": "biome format --write .",
"format:check": "biome format .",
"herdr-plugin:check": "pnpm --dir packages/shepherd-herdr-plugin typecheck && pnpm --dir packages/shepherd-herdr-plugin package:check",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"package:check": "node scripts/check-root-package.mjs",
"package:smoke": "node scripts/check-release-packages.mjs",
"pi-package:check": "pnpm --dir packages/shepherd-pi typecheck && (cd packages/shepherd-pi && npm pack --dry-run --json > /dev/null)",
"pnpm:devPreinstall": "husky",
"prepack": "pnpm build",
"release:notes": "node scripts/release-notes.mjs render",
"release:prepare": "node scripts/prepare-release.mjs",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"@sinclair/typebox": "^0.34.49",
"ajv": "^8.20.0",
"drizzle-orm": "^0.45.2",
"yaml": "^2.9.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.1",
"@earendil-works/pi-coding-agent": "^0.80.6",
"@earendil-works/pi-tui": "^0.80.6",
"@types/node": "^24.13.2",
"drizzle-kit": "^0.31.10",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"tsc-alias": "^1.8.17",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc}": "biome check --write --no-errors-on-unmatched"
}
}