@mindexed/cfact 1.1.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,77 @@
1
+ {
2
+ "name": "@mindexed/cfact",
3
+ "version": "1.1.0",
4
+ "description": "Clean Orthogonal Architecture Software Factory Framework",
5
+ "bin": {
6
+ "claude-factory": "bin/claude-factory.js",
7
+ "cfact": "bin/claude-factory.js"
8
+ },
9
+ "files": [
10
+ "bin/"
11
+ ],
12
+ "publishConfig": {
13
+ "access": "public"
14
+ },
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/Mindexed/cfact.git"
18
+ },
19
+ "engines": {
20
+ "node": ">=18"
21
+ },
22
+ "scripts": {
23
+ "gate:matrix-sync": "node scripts/check-matrix-sync.js",
24
+ "gate:compliance": "node scripts/audit-framework-compliance.js",
25
+ "gate:doc-links": "node scripts/check-doc-links.js",
26
+ "gate:command-metadata": "node scripts/check-command-metadata.js",
27
+ "gate:tracked-symlinks": "node scripts/check-tracked-symlinks.js",
28
+ "gate:agents-md-sync": "node scripts/check-agents-md-sync.js",
29
+ "gate:ripple-coverage": "node scripts/check-ripple-coverage.js",
30
+ "gate:profile-docs": "node scripts/check-profile-docs.js",
31
+ "gate:profile-coverage": "node scripts/check-profile-coverage.js",
32
+ "gate:registry": "node scripts/check-registry.js",
33
+ "gate:adr-template-edges": "node scripts/check-adr-template-edges.js",
34
+ "gate:installer-publish-drift": "node scripts/check-installer-publish-drift.js",
35
+ "gate:changelog": "node scripts/generate-changelog.js --check",
36
+ "test:dc-generator": "node scripts/generate-dependency-cruiser-config.js --self-test",
37
+ "test:substance-generator": "node scripts/generate-substance-eslint-config.js --self-test",
38
+ "test:json-flush": "node scripts/test-json-flush.js",
39
+ "test:installer-exit": "node scripts/test-installer-exit.js",
40
+ "test:installer-channel": "node scripts/test-installer-channel.js",
41
+ "test:installer-wiring": "node scripts/test-installer-wiring.js",
42
+ "test:tar-invocation": "node scripts/test-tar-invocation.js",
43
+ "test:framework-agents-mcp": "node scripts/test-framework-agents-mcp.js",
44
+ "test:controller-gates": "node scripts/test-controller-gates.js",
45
+ "test:git-tree-sweep": "node scripts/test-git-tree-sweep.js",
46
+ "test:secrets-two-stage": "node scripts/test-secrets-two-stage.js",
47
+ "test:profile-paths": "node scripts/verify-profiles.js",
48
+ "test:registry-gate": "node scripts/test-registry-gate.js",
49
+ "test:adr-template-edges": "node scripts/test-adr-template-edges.js",
50
+ "test:adr-path-constants": "node scripts/test-adr-path-constants.js",
51
+ "test:graph-strip": "node scripts/test-graph-frontmatter-strip.js",
52
+ "test:graph-registry": "node scripts/test-graph-registry.js",
53
+ "test:frontmatter-readers": "node scripts/test-frontmatter-readers.js",
54
+ "test:tarball-reproducible": "node scripts/test-tarball-reproducible.js",
55
+ "test:release-version": "node scripts/test-release-version-lib.js",
56
+ "test:consumer-checklist": "node scripts/test-consumer-checklist.js",
57
+ "test:workflow-spine": "node scripts/test-workflow-spine.js",
58
+ "test:command-shape": "node scripts/test-command-shape.js",
59
+ "test:change-record": "node scripts/test-change-record.js",
60
+ "test:installer-publish-drift": "node scripts/test-installer-publish-drift.js",
61
+ "test:grants-authored": "node scripts/test-grants-authored.js",
62
+ "test:test-capability": "node scripts/test-test-capability.js",
63
+ "test:installer-lifecycle": "node scripts/test-installer-lifecycle.js",
64
+ "test:installer-shadowing": "node scripts/test-installer-shadowing.js",
65
+ "test:feature-record": "node scripts/test-feature-record.js",
66
+ "publish:release": "node maintainer-hooks/publish-release.js",
67
+ "gate:consistency": "npm run gate:matrix-sync && npm run gate:compliance && npm run gate:doc-links && npm run gate:command-metadata && npm run gate:tracked-symlinks && npm run gate:agents-md-sync && npm run gate:ripple-coverage && npm run gate:profile-docs && npm run gate:registry && npm run gate:adr-template-edges && npm run gate:installer-publish-drift",
68
+ "gate:boundaries": "bash hooks/check-matrix.sh domain && bash hooks/check-matrix.sh components && bash hooks/check-matrix.sh controllers && bash hooks/check-matrix.sh secrets",
69
+ "ci": "npm run gate:consistency && npm run gate:boundaries && npm run gate:profile-coverage && npm run gate:changelog && npm run test:dc-generator && npm run test:substance-generator && npm run test:json-flush && npm run test:installer-exit && npm run test:installer-channel && npm run test:installer-wiring && npm run test:tar-invocation && npm run test:framework-agents-mcp && npm run test:controller-gates && npm run test:git-tree-sweep && npm run test:secrets-two-stage && npm run test:profile-paths && npm run test:registry-gate && npm run test:adr-template-edges && npm run test:adr-path-constants && npm run test:graph-strip && npm run test:graph-registry && npm run test:frontmatter-readers && npm run test:tarball-reproducible && npm run test:release-version && npm run test:consumer-checklist && npm run test:workflow-spine && npm run test:command-shape && npm run test:change-record && npm run test:installer-publish-drift && npm run test:grants-authored && npm run test:test-capability && npm run test:installer-lifecycle && npm run test:gate-three-state && npm run test:refresh-compliance && npm run test:gate-coverage && npm run test:installer-shadowing && npm run test:feature-record",
70
+ "test:gate-three-state": "node scripts/test-gate-three-state.js",
71
+ "test:refresh-compliance": "node scripts/test-refresh-compliance.js",
72
+ "test:gate-coverage": "node scripts/test-gate-coverage.js"
73
+ },
74
+ "keywords": [],
75
+ "author": "",
76
+ "license": "MIT"
77
+ }