@boboddy/sdk 0.0.16-alpha → 0.1.1-alpha

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 CHANGED
@@ -1,51 +1,110 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@boboddy/sdk",
4
- "version": "0.0.16-alpha",
4
+ "version": "0.1.1-alpha",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  ".": {
8
- "types": "./src/index.ts",
8
+ "types": "./dist/index.d.ts",
9
9
  "bun": "./src/index.ts",
10
- "import": "./dist/index.js"
10
+ "import": "./src/index.ts",
11
+ "default": "./src/index.ts"
11
12
  },
12
13
  "./client": {
13
- "types": "./src/client.ts",
14
+ "types": "./dist/client.d.ts",
14
15
  "bun": "./src/client.ts",
15
- "import": "./dist/client.js"
16
+ "import": "./src/client.ts",
17
+ "default": "./src/client.ts"
16
18
  },
17
- "./define-step": {
18
- "types": "./src/define-step.ts",
19
- "bun": "./src/define-step.ts",
20
- "import": "./dist/define-step.js"
19
+ "./definitions/steps": {
20
+ "types": "./dist/definitions/steps/index.d.ts",
21
+ "bun": "./src/definitions/steps/index.ts",
22
+ "import": "./src/definitions/steps/index.ts",
23
+ "default": "./src/definitions/steps/index.ts"
21
24
  },
22
- "./step-definitions-client": {
23
- "types": "./src/step-definitions-client.ts",
24
- "bun": "./src/step-definitions-client.ts",
25
- "import": "./dist/step-definitions-client.js"
25
+ "./definitions/pipelines": {
26
+ "types": "./dist/definitions/pipelines/index.d.ts",
27
+ "bun": "./src/definitions/pipelines/index.ts",
28
+ "import": "./src/definitions/pipelines/index.ts",
29
+ "default": "./src/definitions/pipelines/index.ts"
30
+ },
31
+ "./definitions/advancement-policies": {
32
+ "types": "./dist/definitions/advancement-policies/index.d.ts",
33
+ "bun": "./src/definitions/advancement-policies/index.ts",
34
+ "import": "./src/definitions/advancement-policies/index.ts",
35
+ "default": "./src/definitions/advancement-policies/index.ts"
26
36
  },
27
37
  "./opencode-mcp": {
28
- "types": "./src/opencode-mcp.ts",
38
+ "types": "./dist/opencode-mcp.d.ts",
29
39
  "bun": "./src/opencode-mcp.ts",
30
- "import": "./dist/opencode-mcp.js"
40
+ "import": "./src/opencode-mcp.ts",
41
+ "default": "./src/opencode-mcp.ts"
31
42
  },
32
43
  "./jsonc": {
33
- "types": "./src/jsonc.ts",
44
+ "types": "./dist/jsonc.d.ts",
34
45
  "bun": "./src/jsonc.ts",
35
- "import": "./dist/jsonc.js"
46
+ "import": "./src/jsonc.ts",
47
+ "default": "./src/jsonc.ts"
36
48
  },
37
49
  "./boboddy-config-parser": {
38
- "types": "./src/boboddy-config-parser.ts",
50
+ "types": "./dist/boboddy-config-parser.d.ts",
39
51
  "bun": "./src/boboddy-config-parser.ts",
40
- "import": "./dist/boboddy-config-parser.js"
52
+ "import": "./src/boboddy-config-parser.ts",
53
+ "default": "./src/boboddy-config-parser.ts"
41
54
  }
42
55
  },
43
56
  "files": [
44
57
  "dist",
45
58
  "README.md"
46
59
  ],
60
+ "repository": {
61
+ "type": "git",
62
+ "url": "https://github.com/connorivy/boboddy"
63
+ },
47
64
  "publishConfig": {
48
- "access": "public"
65
+ "access": "public",
66
+ "exports": {
67
+ ".": {
68
+ "types": "./dist/index.d.ts",
69
+ "import": "./dist/index.js",
70
+ "default": "./dist/index.js"
71
+ },
72
+ "./client": {
73
+ "types": "./dist/client.d.ts",
74
+ "import": "./dist/client.js",
75
+ "default": "./dist/client.js"
76
+ },
77
+ "./definitions/steps": {
78
+ "types": "./dist/definitions/steps/index.d.ts",
79
+ "import": "./dist/definitions/steps/index.js",
80
+ "default": "./dist/definitions/steps/index.js"
81
+ },
82
+ "./definitions/pipelines": {
83
+ "types": "./dist/definitions/pipelines/index.d.ts",
84
+ "import": "./dist/definitions/pipelines/index.js",
85
+ "default": "./dist/definitions/pipelines/index.js"
86
+ },
87
+ "./definitions/advancement-policies": {
88
+ "types": "./dist/definitions/advancement-policies/index.d.ts",
89
+ "import": "./dist/definitions/advancement-policies/index.js",
90
+ "default": "./dist/definitions/advancement-policies/index.js"
91
+ },
92
+ "./opencode-mcp": {
93
+ "types": "./dist/opencode-mcp.d.ts",
94
+ "import": "./dist/opencode-mcp.js",
95
+ "default": "./dist/opencode-mcp.js"
96
+ },
97
+ "./jsonc": {
98
+ "types": "./dist/jsonc.d.ts",
99
+ "import": "./dist/jsonc.js",
100
+ "default": "./dist/jsonc.js"
101
+ },
102
+ "./boboddy-config-parser": {
103
+ "types": "./dist/boboddy-config-parser.d.ts",
104
+ "import": "./dist/boboddy-config-parser.js",
105
+ "default": "./dist/boboddy-config-parser.js"
106
+ }
107
+ }
49
108
  },
50
109
  "scripts": {
51
110
  "generate": "openapi-ts",