@boboddy/sdk 0.1.2-alpha → 0.1.3-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 +18 -79
package/package.json
CHANGED
|
@@ -1,56 +1,40 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@boboddy/sdk",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.3-alpha",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"import": "./src/index.ts",
|
|
11
|
-
"default": "./src/index.ts"
|
|
8
|
+
"import": "./dist/index.js",
|
|
9
|
+
"types": "./dist/index.d.ts"
|
|
12
10
|
},
|
|
13
11
|
"./client": {
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"import": "./src/client.ts",
|
|
17
|
-
"default": "./src/client.ts"
|
|
12
|
+
"import": "./dist/client.js",
|
|
13
|
+
"types": "./dist/client.d.ts"
|
|
18
14
|
},
|
|
19
15
|
"./definitions/steps": {
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"import": "./src/definitions/steps/index.ts",
|
|
23
|
-
"default": "./src/definitions/steps/index.ts"
|
|
16
|
+
"import": "./dist/definitions/steps/index.js",
|
|
17
|
+
"types": "./dist/definitions/steps/index.d.ts"
|
|
24
18
|
},
|
|
25
19
|
"./definitions/pipelines": {
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"import": "./src/definitions/pipelines/index.ts",
|
|
29
|
-
"default": "./src/definitions/pipelines/index.ts"
|
|
20
|
+
"import": "./dist/definitions/pipelines/index.js",
|
|
21
|
+
"types": "./dist/definitions/pipelines/index.d.ts"
|
|
30
22
|
},
|
|
31
23
|
"./definitions/advancement-policies": {
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"import": "./src/definitions/advancement-policies/index.ts",
|
|
35
|
-
"default": "./src/definitions/advancement-policies/index.ts"
|
|
24
|
+
"import": "./dist/definitions/advancement-policies/index.js",
|
|
25
|
+
"types": "./dist/definitions/advancement-policies/index.d.ts"
|
|
36
26
|
},
|
|
37
27
|
"./opencode-mcp": {
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"import": "./src/opencode-mcp.ts",
|
|
41
|
-
"default": "./src/opencode-mcp.ts"
|
|
28
|
+
"import": "./dist/opencode-mcp.js",
|
|
29
|
+
"types": "./dist/opencode-mcp.d.ts"
|
|
42
30
|
},
|
|
43
31
|
"./jsonc": {
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"import": "./src/jsonc.ts",
|
|
47
|
-
"default": "./src/jsonc.ts"
|
|
32
|
+
"import": "./dist/jsonc.js",
|
|
33
|
+
"types": "./dist/jsonc.d.ts"
|
|
48
34
|
},
|
|
49
35
|
"./boboddy-config-parser": {
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"import": "./src/boboddy-config-parser.ts",
|
|
53
|
-
"default": "./src/boboddy-config-parser.ts"
|
|
36
|
+
"import": "./dist/boboddy-config-parser.js",
|
|
37
|
+
"types": "./dist/boboddy-config-parser.d.ts"
|
|
54
38
|
}
|
|
55
39
|
},
|
|
56
40
|
"files": [
|
|
@@ -61,55 +45,10 @@
|
|
|
61
45
|
"type": "git",
|
|
62
46
|
"url": "https://github.com/connorivy/boboddy"
|
|
63
47
|
},
|
|
64
|
-
"publishConfig": {
|
|
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
|
-
}
|
|
108
|
-
},
|
|
109
48
|
"scripts": {
|
|
110
49
|
"generate": "openapi-ts",
|
|
111
50
|
"build": "bun run script/build.ts",
|
|
112
|
-
"
|
|
51
|
+
"link:local": "bun link",
|
|
113
52
|
"test": "bun test test",
|
|
114
53
|
"typecheck": "tsgo -p tsconfig.json --noEmit"
|
|
115
54
|
},
|