@fractary/core 0.6.0 → 0.7.3
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/dist/common/yaml-config.d.ts +35 -3
- package/dist/common/yaml-config.d.ts.map +1 -1
- package/dist/common/yaml-config.js +80 -4
- package/dist/common/yaml-config.js.map +1 -1
- package/dist/config/defaults.d.ts +61 -0
- package/dist/config/defaults.d.ts.map +1 -0
- package/dist/config/defaults.js +371 -0
- package/dist/config/defaults.js.map +1 -0
- package/dist/config/defaults.test.d.ts +7 -0
- package/dist/config/defaults.test.d.ts.map +1 -0
- package/dist/config/defaults.test.js +349 -0
- package/dist/config/defaults.test.js.map +1 -0
- package/dist/config/index.d.ts +3 -1
- package/dist/config/index.d.ts.map +1 -1
- package/dist/config/index.js +20 -1
- package/dist/config/index.js.map +1 -1
- package/dist/config/schema.d.ts +1368 -0
- package/dist/config/schema.d.ts.map +1 -0
- package/dist/config/schema.js +238 -0
- package/dist/config/schema.js.map +1 -0
- package/dist/config/schema.test.d.ts +7 -0
- package/dist/config/schema.test.d.ts.map +1 -0
- package/dist/config/schema.test.js +477 -0
- package/dist/config/schema.test.js.map +1 -0
- package/dist/work/providers/github.d.ts.map +1 -1
- package/dist/work/providers/github.js +17 -1
- package/dist/work/providers/github.js.map +1 -1
- package/package.json +186 -186
package/package.json
CHANGED
|
@@ -1,186 +1,186 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@fractary/core",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Fractary Core SDK - Primitive operations for work tracking, repository management, specifications, logging, file storage, and documentation",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
7
|
-
"typesVersions": {
|
|
8
|
-
"*": {
|
|
9
|
-
"config": [
|
|
10
|
-
"dist/config/index.d.ts"
|
|
11
|
-
],
|
|
12
|
-
"common/config": [
|
|
13
|
-
"dist/common/config.d.ts"
|
|
14
|
-
],
|
|
15
|
-
"common/yaml-config": [
|
|
16
|
-
"dist/common/yaml-config.d.ts"
|
|
17
|
-
],
|
|
18
|
-
"common/secrets": [
|
|
19
|
-
"dist/common/secrets.d.ts"
|
|
20
|
-
],
|
|
21
|
-
"work": [
|
|
22
|
-
"dist/work/index.d.ts"
|
|
23
|
-
],
|
|
24
|
-
"repo": [
|
|
25
|
-
"dist/repo/index.d.ts"
|
|
26
|
-
],
|
|
27
|
-
"spec": [
|
|
28
|
-
"dist/spec/index.d.ts"
|
|
29
|
-
],
|
|
30
|
-
"logs": [
|
|
31
|
-
"dist/logs/index.d.ts"
|
|
32
|
-
],
|
|
33
|
-
"file": [
|
|
34
|
-
"dist/file/index.d.ts"
|
|
35
|
-
],
|
|
36
|
-
"docs": [
|
|
37
|
-
"dist/docs/index.d.ts"
|
|
38
|
-
]
|
|
39
|
-
}
|
|
40
|
-
},
|
|
41
|
-
"exports": {
|
|
42
|
-
".": {
|
|
43
|
-
"types": "./dist/index.d.ts",
|
|
44
|
-
"default": "./dist/index.js"
|
|
45
|
-
},
|
|
46
|
-
"./config": {
|
|
47
|
-
"types": "./dist/config/index.d.ts",
|
|
48
|
-
"default": "./dist/config/index.js"
|
|
49
|
-
},
|
|
50
|
-
"./work": {
|
|
51
|
-
"types": "./dist/work/index.d.ts",
|
|
52
|
-
"default": "./dist/work/index.js"
|
|
53
|
-
},
|
|
54
|
-
"./repo": {
|
|
55
|
-
"types": "./dist/repo/index.d.ts",
|
|
56
|
-
"default": "./dist/repo/index.js"
|
|
57
|
-
},
|
|
58
|
-
"./spec": {
|
|
59
|
-
"types": "./dist/spec/index.d.ts",
|
|
60
|
-
"default": "./dist/spec/index.js"
|
|
61
|
-
},
|
|
62
|
-
"./logs": {
|
|
63
|
-
"types": "./dist/logs/index.d.ts",
|
|
64
|
-
"default": "./dist/logs/index.js"
|
|
65
|
-
},
|
|
66
|
-
"./file": {
|
|
67
|
-
"types": "./dist/file/index.d.ts",
|
|
68
|
-
"default": "./dist/file/index.js"
|
|
69
|
-
},
|
|
70
|
-
"./docs": {
|
|
71
|
-
"types": "./dist/docs/index.d.ts",
|
|
72
|
-
"default": "./dist/docs/index.js"
|
|
73
|
-
},
|
|
74
|
-
"./common/yaml-config": {
|
|
75
|
-
"types": "./dist/common/yaml-config.d.ts",
|
|
76
|
-
"default": "./dist/common/yaml-config.js"
|
|
77
|
-
},
|
|
78
|
-
"./common/config": {
|
|
79
|
-
"types": "./dist/common/config.d.ts",
|
|
80
|
-
"default": "./dist/common/config.js"
|
|
81
|
-
},
|
|
82
|
-
"./common/secrets": {
|
|
83
|
-
"types": "./dist/common/secrets.d.ts",
|
|
84
|
-
"default": "./dist/common/secrets.js"
|
|
85
|
-
}
|
|
86
|
-
},
|
|
87
|
-
"files": [
|
|
88
|
-
"dist",
|
|
89
|
-
"README.md",
|
|
90
|
-
"LICENSE"
|
|
91
|
-
],
|
|
92
|
-
"scripts": {
|
|
93
|
-
"dev": "tsc --watch",
|
|
94
|
-
"build": "tsc",
|
|
95
|
-
"test": "jest",
|
|
96
|
-
"test:watch": "jest --watch",
|
|
97
|
-
"lint": "eslint src --ext .ts",
|
|
98
|
-
"typecheck": "tsc --noEmit",
|
|
99
|
-
"clean": "rm -rf dist",
|
|
100
|
-
"prepublishOnly": "npm run clean && npm run build"
|
|
101
|
-
},
|
|
102
|
-
"keywords": [
|
|
103
|
-
"fractary",
|
|
104
|
-
"core",
|
|
105
|
-
"primitives",
|
|
106
|
-
"sdk",
|
|
107
|
-
"work",
|
|
108
|
-
"repository",
|
|
109
|
-
"git",
|
|
110
|
-
"github",
|
|
111
|
-
"gitlab",
|
|
112
|
-
"bitbucket",
|
|
113
|
-
"jira",
|
|
114
|
-
"linear",
|
|
115
|
-
"specification",
|
|
116
|
-
"logging",
|
|
117
|
-
"file-storage"
|
|
118
|
-
],
|
|
119
|
-
"author": "Fractary Team",
|
|
120
|
-
"license": "MIT",
|
|
121
|
-
"dependencies": {
|
|
122
|
-
"@fractary/forge": "^1.1.1",
|
|
123
|
-
"dotenv": "^16.4.5",
|
|
124
|
-
"js-yaml": "^4.1.1",
|
|
125
|
-
"jsonwebtoken": "^9.0.2",
|
|
126
|
-
"zod": "^3.22.4"
|
|
127
|
-
},
|
|
128
|
-
"devDependencies": {
|
|
129
|
-
"@aws-sdk/client-s3": "^3.971.0",
|
|
130
|
-
"@aws-sdk/credential-providers": "^3.971.0",
|
|
131
|
-
"@aws-sdk/s3-request-presigner": "^3.971.0",
|
|
132
|
-
"@google-cloud/storage": "^7.18.0",
|
|
133
|
-
"@types/aws-sdk": "^0.0.42",
|
|
134
|
-
"@types/jest": "^30.0.0",
|
|
135
|
-
"@types/js-yaml": "^4.0.9",
|
|
136
|
-
"@types/jsonwebtoken": "^9.0.5",
|
|
137
|
-
"@types/node": "^20.19.26",
|
|
138
|
-
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
139
|
-
"@typescript-eslint/parser": "^6.19.0",
|
|
140
|
-
"eslint": "^8.56.0",
|
|
141
|
-
"googleapis": "^170.1.0",
|
|
142
|
-
"jest": "^29.7.0",
|
|
143
|
-
"ts-jest": "^29.1.1",
|
|
144
|
-
"ts-node": "^10.9.2",
|
|
145
|
-
"typescript": "^5.3.3",
|
|
146
|
-
"vitest": "^1.0.4"
|
|
147
|
-
},
|
|
148
|
-
"peerDependencies": {
|
|
149
|
-
"@aws-sdk/client-s3": "^3.0.0",
|
|
150
|
-
"@aws-sdk/credential-providers": "^3.0.0",
|
|
151
|
-
"@aws-sdk/s3-request-presigner": "^3.0.0",
|
|
152
|
-
"@google-cloud/storage": "^7.0.0",
|
|
153
|
-
"googleapis": "^140.0.0"
|
|
154
|
-
},
|
|
155
|
-
"peerDependenciesMeta": {
|
|
156
|
-
"@aws-sdk/client-s3": {
|
|
157
|
-
"optional": true
|
|
158
|
-
},
|
|
159
|
-
"@aws-sdk/credential-providers": {
|
|
160
|
-
"optional": true
|
|
161
|
-
},
|
|
162
|
-
"@aws-sdk/s3-request-presigner": {
|
|
163
|
-
"optional": true
|
|
164
|
-
},
|
|
165
|
-
"@google-cloud/storage": {
|
|
166
|
-
"optional": true
|
|
167
|
-
},
|
|
168
|
-
"googleapis": {
|
|
169
|
-
"optional": true
|
|
170
|
-
}
|
|
171
|
-
},
|
|
172
|
-
"engines": {
|
|
173
|
-
"node": ">=18.0.0"
|
|
174
|
-
},
|
|
175
|
-
"repository": {
|
|
176
|
-
"type": "git",
|
|
177
|
-
"url": "git+https://github.com/fractary/core.git"
|
|
178
|
-
},
|
|
179
|
-
"bugs": {
|
|
180
|
-
"url": "https://github.com/fractary/core/issues"
|
|
181
|
-
},
|
|
182
|
-
"homepage": "https://github.com/fractary/core#readme",
|
|
183
|
-
"publishConfig": {
|
|
184
|
-
"access": "public"
|
|
185
|
-
}
|
|
186
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@fractary/core",
|
|
3
|
+
"version": "0.7.3",
|
|
4
|
+
"description": "Fractary Core SDK - Primitive operations for work tracking, repository management, specifications, logging, file storage, and documentation",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"typesVersions": {
|
|
8
|
+
"*": {
|
|
9
|
+
"config": [
|
|
10
|
+
"dist/config/index.d.ts"
|
|
11
|
+
],
|
|
12
|
+
"common/config": [
|
|
13
|
+
"dist/common/config.d.ts"
|
|
14
|
+
],
|
|
15
|
+
"common/yaml-config": [
|
|
16
|
+
"dist/common/yaml-config.d.ts"
|
|
17
|
+
],
|
|
18
|
+
"common/secrets": [
|
|
19
|
+
"dist/common/secrets.d.ts"
|
|
20
|
+
],
|
|
21
|
+
"work": [
|
|
22
|
+
"dist/work/index.d.ts"
|
|
23
|
+
],
|
|
24
|
+
"repo": [
|
|
25
|
+
"dist/repo/index.d.ts"
|
|
26
|
+
],
|
|
27
|
+
"spec": [
|
|
28
|
+
"dist/spec/index.d.ts"
|
|
29
|
+
],
|
|
30
|
+
"logs": [
|
|
31
|
+
"dist/logs/index.d.ts"
|
|
32
|
+
],
|
|
33
|
+
"file": [
|
|
34
|
+
"dist/file/index.d.ts"
|
|
35
|
+
],
|
|
36
|
+
"docs": [
|
|
37
|
+
"dist/docs/index.d.ts"
|
|
38
|
+
]
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"exports": {
|
|
42
|
+
".": {
|
|
43
|
+
"types": "./dist/index.d.ts",
|
|
44
|
+
"default": "./dist/index.js"
|
|
45
|
+
},
|
|
46
|
+
"./config": {
|
|
47
|
+
"types": "./dist/config/index.d.ts",
|
|
48
|
+
"default": "./dist/config/index.js"
|
|
49
|
+
},
|
|
50
|
+
"./work": {
|
|
51
|
+
"types": "./dist/work/index.d.ts",
|
|
52
|
+
"default": "./dist/work/index.js"
|
|
53
|
+
},
|
|
54
|
+
"./repo": {
|
|
55
|
+
"types": "./dist/repo/index.d.ts",
|
|
56
|
+
"default": "./dist/repo/index.js"
|
|
57
|
+
},
|
|
58
|
+
"./spec": {
|
|
59
|
+
"types": "./dist/spec/index.d.ts",
|
|
60
|
+
"default": "./dist/spec/index.js"
|
|
61
|
+
},
|
|
62
|
+
"./logs": {
|
|
63
|
+
"types": "./dist/logs/index.d.ts",
|
|
64
|
+
"default": "./dist/logs/index.js"
|
|
65
|
+
},
|
|
66
|
+
"./file": {
|
|
67
|
+
"types": "./dist/file/index.d.ts",
|
|
68
|
+
"default": "./dist/file/index.js"
|
|
69
|
+
},
|
|
70
|
+
"./docs": {
|
|
71
|
+
"types": "./dist/docs/index.d.ts",
|
|
72
|
+
"default": "./dist/docs/index.js"
|
|
73
|
+
},
|
|
74
|
+
"./common/yaml-config": {
|
|
75
|
+
"types": "./dist/common/yaml-config.d.ts",
|
|
76
|
+
"default": "./dist/common/yaml-config.js"
|
|
77
|
+
},
|
|
78
|
+
"./common/config": {
|
|
79
|
+
"types": "./dist/common/config.d.ts",
|
|
80
|
+
"default": "./dist/common/config.js"
|
|
81
|
+
},
|
|
82
|
+
"./common/secrets": {
|
|
83
|
+
"types": "./dist/common/secrets.d.ts",
|
|
84
|
+
"default": "./dist/common/secrets.js"
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"files": [
|
|
88
|
+
"dist",
|
|
89
|
+
"README.md",
|
|
90
|
+
"LICENSE"
|
|
91
|
+
],
|
|
92
|
+
"scripts": {
|
|
93
|
+
"dev": "tsc --watch",
|
|
94
|
+
"build": "tsc",
|
|
95
|
+
"test": "jest",
|
|
96
|
+
"test:watch": "jest --watch",
|
|
97
|
+
"lint": "eslint src --ext .ts",
|
|
98
|
+
"typecheck": "tsc --noEmit",
|
|
99
|
+
"clean": "rm -rf dist",
|
|
100
|
+
"prepublishOnly": "npm run clean && npm run build"
|
|
101
|
+
},
|
|
102
|
+
"keywords": [
|
|
103
|
+
"fractary",
|
|
104
|
+
"core",
|
|
105
|
+
"primitives",
|
|
106
|
+
"sdk",
|
|
107
|
+
"work",
|
|
108
|
+
"repository",
|
|
109
|
+
"git",
|
|
110
|
+
"github",
|
|
111
|
+
"gitlab",
|
|
112
|
+
"bitbucket",
|
|
113
|
+
"jira",
|
|
114
|
+
"linear",
|
|
115
|
+
"specification",
|
|
116
|
+
"logging",
|
|
117
|
+
"file-storage"
|
|
118
|
+
],
|
|
119
|
+
"author": "Fractary Team",
|
|
120
|
+
"license": "MIT",
|
|
121
|
+
"dependencies": {
|
|
122
|
+
"@fractary/forge": "^1.1.1",
|
|
123
|
+
"dotenv": "^16.4.5",
|
|
124
|
+
"js-yaml": "^4.1.1",
|
|
125
|
+
"jsonwebtoken": "^9.0.2",
|
|
126
|
+
"zod": "^3.22.4"
|
|
127
|
+
},
|
|
128
|
+
"devDependencies": {
|
|
129
|
+
"@aws-sdk/client-s3": "^3.971.0",
|
|
130
|
+
"@aws-sdk/credential-providers": "^3.971.0",
|
|
131
|
+
"@aws-sdk/s3-request-presigner": "^3.971.0",
|
|
132
|
+
"@google-cloud/storage": "^7.18.0",
|
|
133
|
+
"@types/aws-sdk": "^0.0.42",
|
|
134
|
+
"@types/jest": "^30.0.0",
|
|
135
|
+
"@types/js-yaml": "^4.0.9",
|
|
136
|
+
"@types/jsonwebtoken": "^9.0.5",
|
|
137
|
+
"@types/node": "^20.19.26",
|
|
138
|
+
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
139
|
+
"@typescript-eslint/parser": "^6.19.0",
|
|
140
|
+
"eslint": "^8.56.0",
|
|
141
|
+
"googleapis": "^170.1.0",
|
|
142
|
+
"jest": "^29.7.0",
|
|
143
|
+
"ts-jest": "^29.1.1",
|
|
144
|
+
"ts-node": "^10.9.2",
|
|
145
|
+
"typescript": "^5.3.3",
|
|
146
|
+
"vitest": "^1.0.4"
|
|
147
|
+
},
|
|
148
|
+
"peerDependencies": {
|
|
149
|
+
"@aws-sdk/client-s3": "^3.0.0",
|
|
150
|
+
"@aws-sdk/credential-providers": "^3.0.0",
|
|
151
|
+
"@aws-sdk/s3-request-presigner": "^3.0.0",
|
|
152
|
+
"@google-cloud/storage": "^7.0.0",
|
|
153
|
+
"googleapis": "^140.0.0"
|
|
154
|
+
},
|
|
155
|
+
"peerDependenciesMeta": {
|
|
156
|
+
"@aws-sdk/client-s3": {
|
|
157
|
+
"optional": true
|
|
158
|
+
},
|
|
159
|
+
"@aws-sdk/credential-providers": {
|
|
160
|
+
"optional": true
|
|
161
|
+
},
|
|
162
|
+
"@aws-sdk/s3-request-presigner": {
|
|
163
|
+
"optional": true
|
|
164
|
+
},
|
|
165
|
+
"@google-cloud/storage": {
|
|
166
|
+
"optional": true
|
|
167
|
+
},
|
|
168
|
+
"googleapis": {
|
|
169
|
+
"optional": true
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
"engines": {
|
|
173
|
+
"node": ">=18.0.0"
|
|
174
|
+
},
|
|
175
|
+
"repository": {
|
|
176
|
+
"type": "git",
|
|
177
|
+
"url": "git+https://github.com/fractary/core.git"
|
|
178
|
+
},
|
|
179
|
+
"bugs": {
|
|
180
|
+
"url": "https://github.com/fractary/core/issues"
|
|
181
|
+
},
|
|
182
|
+
"homepage": "https://github.com/fractary/core#readme",
|
|
183
|
+
"publishConfig": {
|
|
184
|
+
"access": "public"
|
|
185
|
+
}
|
|
186
|
+
}
|