@crossdelta/platform-sdk 0.16.5 → 0.17.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.
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
// Type Checking
|
|
5
|
+
"strict": true,
|
|
6
|
+
"noUncheckedIndexedAccess": true,
|
|
7
|
+
"noImplicitOverride": true,
|
|
8
|
+
"noFallthroughCasesInSwitch": true,
|
|
9
|
+
|
|
10
|
+
// Modules
|
|
11
|
+
"module": "ESNext",
|
|
12
|
+
"moduleResolution": "Bundler",
|
|
13
|
+
"resolveJsonModule": true,
|
|
14
|
+
"allowImportingTsExtensions": true,
|
|
15
|
+
"verbatimModuleSyntax": true,
|
|
16
|
+
|
|
17
|
+
// Emit
|
|
18
|
+
"noEmit": true,
|
|
19
|
+
"sourceMap": true,
|
|
20
|
+
|
|
21
|
+
// Interop Constraints
|
|
22
|
+
"isolatedModules": true,
|
|
23
|
+
"esModuleInterop": true,
|
|
24
|
+
"allowSyntheticDefaultImports": true,
|
|
25
|
+
"forceConsistentCasingInFileNames": true,
|
|
26
|
+
"skipLibCheck": true,
|
|
27
|
+
|
|
28
|
+
// Language and Environment
|
|
29
|
+
"target": "ES2022",
|
|
30
|
+
"lib": ["ES2022"],
|
|
31
|
+
"useDefineForClassFields": true,
|
|
32
|
+
|
|
33
|
+
// Projects
|
|
34
|
+
"incremental": true
|
|
35
|
+
},
|
|
36
|
+
"exclude": [
|
|
37
|
+
"node_modules",
|
|
38
|
+
"dist",
|
|
39
|
+
"build",
|
|
40
|
+
"coverage",
|
|
41
|
+
".turbo",
|
|
42
|
+
"tmp"
|
|
43
|
+
]
|
|
44
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crossdelta/platform-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.17.0",
|
|
4
4
|
"description": "Platform toolkit for event-driven microservices — keeping code and infrastructure in lockstep.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -93,33 +93,11 @@
|
|
|
93
93
|
"test:watch": "bun test --watch"
|
|
94
94
|
},
|
|
95
95
|
"schematics": "./dist/schematics/collection.json",
|
|
96
|
-
"esbuild": {
|
|
97
|
-
"external": [
|
|
98
|
-
"@crossdelta/infrastructure",
|
|
99
|
-
"@faker-js/faker",
|
|
100
|
-
"@inquirer/prompts",
|
|
101
|
-
"ai",
|
|
102
|
-
"@ai-sdk/openai",
|
|
103
|
-
"@ai-sdk/anthropic",
|
|
104
|
-
"handlebars",
|
|
105
|
-
"listr2",
|
|
106
|
-
"enquirer",
|
|
107
|
-
"execa",
|
|
108
|
-
"globby",
|
|
109
|
-
"fs-extra",
|
|
110
|
-
"chalk",
|
|
111
|
-
"ora",
|
|
112
|
-
"jiti",
|
|
113
|
-
"zod",
|
|
114
|
-
"ts-morph",
|
|
115
|
-
"commander",
|
|
116
|
-
"chokidar"
|
|
117
|
-
]
|
|
118
|
-
},
|
|
119
96
|
"dependencies": {
|
|
120
97
|
"@ai-sdk/anthropic": "^2.0.53",
|
|
121
98
|
"@ai-sdk/openai": "^2.0.79",
|
|
122
99
|
"@angular-devkit/core": "^21.0.0",
|
|
100
|
+
"@crossdelta/cloudevents": "0.6.0",
|
|
123
101
|
"@faker-js/faker": "^9.8.0",
|
|
124
102
|
"@inquirer/prompts": "^7.5.0",
|
|
125
103
|
"@listr2/prompt-adapter-enquirer": "^2.0.15",
|
|
@@ -144,8 +122,7 @@
|
|
|
144
122
|
"zod": "^3.24.3"
|
|
145
123
|
},
|
|
146
124
|
"peerDependencies": {
|
|
147
|
-
"@crossdelta/
|
|
148
|
-
"@crossdelta/infrastructure": "*",
|
|
125
|
+
"@crossdelta/infrastructure": "0.5.3",
|
|
149
126
|
"@nestjs/schematics": "^11.0.5",
|
|
150
127
|
"turbo": "^2.0.0"
|
|
151
128
|
},
|