@patronage/software-factory 0.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,89 @@
1
+ {
2
+ "name": "@patronage/software-factory",
3
+ "version": "0.20.0",
4
+ "description": "Shared Patronage software factory CLI and project-profile validation tools",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/patronage/software-factory.git",
9
+ "directory": "software-factory"
10
+ },
11
+ "bin": {
12
+ "patronage-factory": "./dist/index.js",
13
+ "psf": "./dist/index.js"
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "README.md",
18
+ "CONTEXT.md"
19
+ ],
20
+ "type": "module",
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/index.d.ts",
24
+ "default": "./dist/index.js"
25
+ },
26
+ "./schemas": {
27
+ "types": "./dist/schemas.d.ts",
28
+ "default": "./dist/schemas.js"
29
+ }
30
+ },
31
+ "publishConfig": {
32
+ "access": "public"
33
+ },
34
+ "dependencies": {
35
+ "commander": "14.0.3",
36
+ "picomatch": "^4.0.5",
37
+ "yaml": "^2.9.0",
38
+ "zod": "4.4.3"
39
+ },
40
+ "devDependencies": {
41
+ "@types/node": "24.13.3",
42
+ "@types/picomatch": "^4.0.3",
43
+ "@vitest/coverage-v8": "4.1.10",
44
+ "dependency-cruiser": "18.1.0",
45
+ "knip": "6.27.0",
46
+ "oxfmt": "0.59.0",
47
+ "oxlint": "1.74.0",
48
+ "oxlint-tsgolint": "7.0.2001",
49
+ "tsdown": "0.21.10",
50
+ "tsx": "4.23.1",
51
+ "typescript": "5.9.3",
52
+ "ultracite": "7.9.4",
53
+ "vitest": "4.1.10",
54
+ "vitest-evals": "0.14.0"
55
+ },
56
+ "engines": {
57
+ "node": "^24.0.0"
58
+ },
59
+ "scripts": {
60
+ "prebuild": "bash ../scripts/ensure-worktree-bootstrap.sh",
61
+ "build": "tsdown",
62
+ "boundaries": "node scripts/package-boundaries.mjs",
63
+ "api:check": "pnpm build && node scripts/public-api-surface.mjs",
64
+ "precli": "bash ../scripts/ensure-worktree-bootstrap.sh",
65
+ "cli": "tsx src/index.ts",
66
+ "cleanup:check": "knip --files --dependencies",
67
+ "precoverage": "bash ../scripts/ensure-worktree-bootstrap.sh",
68
+ "coverage": "vitest run --coverage",
69
+ "docs:reference": "tsx scripts/update-command-reference.ts",
70
+ "eval:review": "tsx evals/review-prompts/track-b/reviewRunner.ts",
71
+ "eval:review:report": "tsx evals/review-prompts/track-b/reviewReport.ts",
72
+ "eval:review:rescore": "tsx evals/review-prompts/track-b/rescore.ts",
73
+ "eval:review:run": "vitest run --config evals/review-prompts/vitest.eval.config.ts",
74
+ "pack:smoke": "bash scripts/pack-smoke.sh",
75
+ "profile:schema": "tsx scripts/generate-profile-schema.ts",
76
+ "pretest": "bash ../scripts/ensure-worktree-bootstrap.sh",
77
+ "test": "vitest run",
78
+ "pretest:stress": "bash ../scripts/ensure-worktree-bootstrap.sh",
79
+ "test:stress": "node scripts/stress-tests.mjs",
80
+ "pretypecheck": "bash ../scripts/ensure-worktree-bootstrap.sh",
81
+ "typecheck": "tsc --noEmit",
82
+ "precheck": "bash ../scripts/ensure-worktree-bootstrap.sh",
83
+ "check": "ultracite check",
84
+ "check:type-aware": "oxlint --type-aware --tsconfig=tsconfig.json -c oxlint.type-aware.jsonc src",
85
+ "prefix": "bash ../scripts/ensure-worktree-bootstrap.sh",
86
+ "fix": "ultracite fix",
87
+ "knip": "knip"
88
+ }
89
+ }