spec-driven-development 3.7.19 → 3.7.22

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/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # spec-driven-development
2
2
 
3
+ ## 3.7.22
4
+
5
+ ### Patch Changes
6
+
7
+ - chore: auto-bump internal dependents
8
+ - Updated dependencies because of Reduce published install and bundle size by optionalizing heavy runtime families and adding a repo dependency audit.
9
+ - Updated dependencies because of Split example discovery from rich runtime packages so lightweight consumers no longer install every ContractSpec example.
10
+ - @contractspec/app.cli-contractspec@6.1.0
11
+ - @contractspec/lib.contracts-spec@5.5.0
12
+
13
+ ## 3.7.21
14
+
15
+ ### Patch Changes
16
+
17
+ - chore: auto-bump internal dependents
18
+ - Updated dependencies because of chore: auto-bump internal dependents
19
+ - Updated dependencies because of Add FormSpec layout hints, semantic field rendering, and portable text/textarea input-group addons.
20
+ - Updated dependencies because of Add ThemeSpec light/dark modes and a design-system Tailwind bridge for CSS variables, presets, CSS text, and OKLCH color pass-through.
21
+ - Updated dependencies because of Add a canonical typed result system for ContractSpec success and failure propagation across operations, workflows, jobs, server adapters, MCP, GraphQL, and React clients.
22
+ - @contractspec/app.cli-contractspec@6.0.2
23
+ - @contractspec/lib.contracts-spec@5.5.0
24
+
25
+ ## 3.7.20
26
+
27
+ ### Patch Changes
28
+
29
+ - chore: auto-bump internal dependents
30
+ - Updated dependencies because of chore: auto-bump internal dependents
31
+ - @contractspec/app.cli-contractspec@6.0.1
32
+
3
33
  ## 3.7.19
4
34
 
5
35
  ### Patch Changes
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "spec-driven-development",
3
- "version": "3.7.19",
3
+ "version": "3.7.22",
4
4
  "description": "CLI tool for creating, building, and validating contract specifications",
5
5
  "bin": {
6
6
  "sdd": "./bin/contractspec.mjs",
7
7
  "spec-driven-development": "./bin/contractspec.mjs"
8
8
  },
9
9
  "dependencies": {
10
- "@contractspec/app.cli-contractspec": "6.0.0"
10
+ "@contractspec/app.cli-contractspec": "6.1.0",
11
+ "@contractspec/lib.contracts-spec": "5.5.0"
11
12
  },
12
13
  "scripts": {
13
14
  "publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
@@ -31,5 +32,8 @@
31
32
  "url": "https://github.com/lssm-tech/contractspec.git",
32
33
  "directory": "packages/apps-registry/spec-driven-development"
33
34
  },
34
- "homepage": "https://contractspec.io"
35
+ "homepage": "https://contractspec.io",
36
+ "exports": {
37
+ ".": "./src/index.ts"
38
+ }
35
39
  }
@@ -0,0 +1,23 @@
1
+ import { defineAppConfig } from '@contractspec/lib.contracts-spec/app-config/spec';
2
+
3
+ export const SpecDrivenDevelopmentBlueprint = defineAppConfig({
4
+ meta: {
5
+ ...{
6
+ key: 'apps-registry.spec-driven-development',
7
+ version: '1.0.0',
8
+ title: 'Spec Driven Development',
9
+ description:
10
+ 'CLI tool for creating, building, and validating contract specifications',
11
+ domain: 'spec-driven-development',
12
+ owners: ['@contractspec-core'],
13
+ tags: ['package', 'appsRegistry', 'spec-driven-development'],
14
+ stability: 'experimental',
15
+ },
16
+ appId: 'spec-driven-development',
17
+ },
18
+ capabilities: {
19
+ enabled: [
20
+ // Add capability refs here
21
+ ],
22
+ },
23
+ });
package/src/index.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './blueprint';