@jttc/projen-project-types 1.0.0-beta.4 β†’ 1.0.0-beta.6

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/.cz-config.js CHANGED
@@ -31,6 +31,7 @@ module.exports = {
31
31
  { name: 'cdk-app' },
32
32
  { name: 'cdk8s-component' },
33
33
  { name: 'cdk8s-library' },
34
+ { name: 'cdk8s-app' },
34
35
  ],
35
36
 
36
37
  usePreparedCommit: true, // to re-use commit from ./.git/COMMIT_EDITMSG
package/.jsii CHANGED
@@ -95,7 +95,7 @@
95
95
  },
96
96
  "name": "@jttc/projen-project-types",
97
97
  "readme": {
98
- "markdown": "# πŸ—οΈ Projen Project Types\n\n> **Opinionated project templates for [projen.io](https://projen.io) that accelerate development with best practices built-in**\n\n[![npm version](https://img.shields.io/npm/v/@jttc/projen-project-types)](https://www.npmjs.com/package/@jttc/projen-project-types)\n[![License: Apache-2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n[![Documentation](https://img.shields.io/badge/docs-mkdocs-blue)](https://jumptothecloud.github.io/projen-project-types/)\n[![GitHub](https://img.shields.io/github/stars/JumpToTheCloud/projen-project-types?style=social)](https://github.com/JumpToTheCloud/projen-project-types)\n\n## ✨ What is this?\n\nThis package provides **ready-to-use project templates** that extend [projen](https://projen.io) with opinionated configurations, saving you hours of setup time while ensuring consistency and best practices across your projects.\n\nInstead of manually configuring Prettier, ESLint, VSCode settings, CI/CD pipelines, and other tools for every project, these templates give you everything pre-configured and battle-tested.\n\n## πŸš€ Quick Start\n\n```bash\n# Create a CDK construct library\nnpx projen new --from @jttc/projen-project-types cdk-library\n\n# Create a CDK application\nnpx projen new --from @jttc/projen-project-types cdk-app\n\n# Create a CDK8s construct library with Kubernetes support\nnpx projen new --from @jttc/projen-project-types cdk8s-library\n```\n\n## πŸ“¦ Available Project Types\n\n| Project Type | Description | Best For |\n|--------------|-------------|----------|\n| **[CDK Library](https://jumptothecloud.github.io/projen-project-types/project-types/cdk-library/)** | AWS CDK construct libraries | Creating reusable AWS infrastructure components |\n| **[CDK App](https://jumptothecloud.github.io/projen-project-types/project-types/cdk-app/)** | AWS CDK applications | Building and deploying AWS infrastructure |\n| **[CDK8s Library](https://jumptothecloud.github.io/projen-project-types/project-types/cdk8s-library/)** | CDK8s libraries with Kubernetes | Creating reusable Kubernetes constructs |\n\n## 🧩 Available Components\n\n| Component | Description | Documentation |\n|-----------|-------------|---------------|\n| **[CDK8s Component](https://jumptothecloud.github.io/projen-project-types/components/cdk8s/)** | Kubernetes manifest generation with TypeScript | Add to any project type |\n\n## ⚑ What You Get Out of the Box\n\nEvery project template includes:\n\n- 🎨 **[Prettier](https://jumptothecloud.github.io/projen-project-types/default-configurations/#prettier-configuration)** - Consistent code formatting\n- πŸ”§ **[VSCode Setup](https://jumptothecloud.github.io/projen-project-types/default-configurations/#vscode-configuration)** - Optimized editor experience with recommended extensions\n- πŸ“ **TypeScript** - Best practices and configurations\n- πŸ§ͺ **Jest Testing** - Ready-to-use testing framework\n- 🚒 **CI/CD Pipelines** - GitHub Actions workflows\n- πŸ“š **Documentation** - Auto-generated API docs\n- πŸ”’ **Security** - Dependabot and security scanning\n\n## πŸ’‘ Example Usage\n\n### CDK Library with Custom Configuration\n\n```typescript\n// .projenrc.ts\nimport { CdkLibrary } from '@jttc/projen-project-types';\n\nconst project = new CdkLibrary({\n name: 'my-awesome-constructs',\n author: 'Your Name',\n authorAddress: 'your@email.com',\n repositoryUrl: 'https://github.com/yourusername/my-awesome-constructs.git',\n cdkVersion: '2.1.0',\n defaultReleaseBranch: 'main',\n\n // Customize as needed\n prettier: true,\n vscode: true,\n});\n\nproject.synth();\n```\n\n### CDK8s Library with Kubernetes Support\n\n```typescript\n// .projenrc.ts\nimport { Cdk8sLibrary, K8sVersion } from '@jttc/projen-project-types';\n\nconst project = new Cdk8sLibrary({\n name: 'my-k8s-constructs',\n author: 'Your Name',\n authorAddress: 'your@email.com',\n repositoryUrl: 'https://github.com/yourusername/my-k8s-constructs.git',\n cdkVersion: '2.1.0',\n defaultReleaseBranch: 'main',\n\n // CDK8s specific options\n k8sVersion: K8sVersion.V1_31,\n appPath: 'src/k8s',\n imports: ['cert-manager@v1.13.0'],\n});\n\nproject.synth();\n```\n\n## πŸ—οΈ Architecture\n\n```\nprojen-project-types/\nβ”œβ”€β”€ πŸ“ Project Types/ # Complete project templates\nβ”‚ β”œβ”€β”€ CDK Library # AWS CDK construct libraries\nβ”‚ β”œβ”€β”€ CDK App # AWS CDK applications\nβ”‚ └── CDK8s Library # Kubernetes + CDK8s libraries\nβ”œβ”€β”€ 🧩 Components/ # Reusable functionality\nβ”‚ └── CDK8s Component # Kubernetes manifest generation\n└── βš™οΈ Common Config/ # Shared configurations\n β”œβ”€β”€ Prettier # Code formatting\n β”œβ”€β”€ VSCode # Editor setup\n └── TypeScript # Language configuration\n```\n\n## πŸ“š Documentation\n\nComprehensive documentation is available at: **[jumptothecloud.github.io/projen-project-types](https://jumptothecloud.github.io/projen-project-types/)**\n\n- **[Getting Started Guide](https://jumptothecloud.github.io/projen-project-types/)**\n- **[Project Types](https://jumptothecloud.github.io/projen-project-types/project-types/cdk-library/)**\n- **[Components](https://jumptothecloud.github.io/projen-project-types/components/cdk8s/)**\n- **[Default Configurations](https://jumptothecloud.github.io/projen-project-types/default-configurations/)**\n\n## πŸ› οΈ Development\n\n### Prerequisites\n\n- **Node.js** (v18+)\n- **Yarn** package manager\n- **Python 3** (for documentation)\n\n### Setup\n\n```bash\n# Clone the repository\ngit clone https://github.com/JumpToTheCloud/projen-project-types.git\ncd projen-project-types\n\n# Install dependencies\nyarn install\n\n# Run tests\nyarn test\n\n# Build the project\nyarn build\n```\n\n### Documentation Development\n\n```bash\n# Install documentation dependencies\npip3 install mkdocs mkdocs-material mike\n\n# Serve documentation locally with hot reload\nyarn docs:serve\n\n# Build documentation\nyarn docs:build\n```\n\nThe documentation will be available at `http://localhost:8099` when using the serve command.\n\n## πŸ—ΊοΈ Roadmap\n\nPlanned features and project types:\n\n- **Next.js Projects** - Full-stack TypeScript applications\n- **Node.js APIs** - REST and GraphQL API templates\n- **React Libraries** - Component library templates\n- **Terraform Modules** - Infrastructure as Code templates\n- **Docker Components** - Containerization support\n- **Serverless Functions** - AWS Lambda and other FaaS templates\n\n## 🀝 Contributing\n\nWe welcome contributions! Here's how to get started:\n\n1. **Fork the repository**\n2. **Create a feature branch**: `git checkout -b feature/amazing-feature`\n3. **Make your changes** and add tests\n4. **Run tests**: `yarn test`\n5. **Update documentation** if needed\n6. **Commit your changes**: `git commit -m 'Add amazing feature'`\n7. **Push to the branch**: `git push origin feature/amazing-feature`\n8. **Open a Pull Request**\n\n### Contribution Guidelines\n\n- All new features should include tests\n- Documentation should be updated for new project types or components\n- Follow the existing code style and patterns\n- Ensure all CI checks pass\n\n## ❓ Support\n\n- **Documentation**: [jumptothecloud.github.io/projen-project-types](https://jumptothecloud.github.io/projen-project-types/)\n- **Issues**: [GitHub Issues](https://github.com/JumpToTheCloud/projen-project-types/issues)\n- **Discussions**: [GitHub Discussions](https://github.com/JumpToTheCloud/projen-project-types/discussions)\n\n## πŸ“„ License\n\nThis project is licensed under the **Apache 2.0 License** - see the [LICENSE](LICENSE) file for details.\n\n## 🌟 Credits\n\nBuilt with ❀️ by the [JumpToTheCloud](https://github.com/JumpToTheCloud) team.\n\nSpecial thanks to the [projen](https://projen.io) community for creating such an amazing tool for project configuration management."
98
+ "markdown": "# πŸ—οΈ Projen Project Types\n\n> **Opinionated project templates for [projen.io](https://projen.io) that accelerate development with best practices built-in**\n\n[![npm version](https://img.shields.io/npm/v/@jttc/projen-project-types)](https://www.npmjs.com/package/@jttc/projen-project-types)\n[![License: Apache-2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n[![Documentation](https://img.shields.io/badge/docs-mkdocs-blue)](https://jumptothecloud.github.io/projen-project-types/)\n[![GitHub](https://img.shields.io/github/stars/JumpToTheCloud/projen-project-types?style=social)](https://github.com/JumpToTheCloud/projen-project-types)\n\n## ✨ What is this?\n\nThis package provides **ready-to-use project templates** that extend [projen](https://projen.io) with opinionated configurations, saving you hours of setup time while ensuring consistency and best practices across your projects.\n\nInstead of manually configuring Prettier, ESLint, VSCode settings, CI/CD pipelines, and other tools for every project, these templates give you everything pre-configured and battle-tested.\n\n## πŸš€ Quick Start\n\n```bash\n# Create a CDK construct library\nnpx projen new --from @jttc/projen-project-types cdk-library\n\n# Create a CDK application\nnpx projen new --from @jttc/projen-project-types cdk-app\n\n# Create a CDK8s construct library with Kubernetes support\nnpx projen new --from @jttc/projen-project-types cdk8s-library\n\n# Create a CDK8s application with Kubernetes support\nnpx projen new --from @jttc/projen-project-types cdk8s-app\n```\n\n## πŸ“¦ Available Project Types\n\n| Project Type | Description | Best For |\n|--------------|-------------|----------|\n| **[CDK Library](https://jumptothecloud.github.io/projen-project-types/project-types/cdk-library/)** | AWS CDK construct libraries | Creating reusable AWS infrastructure components |\n| **[CDK App](https://jumptothecloud.github.io/projen-project-types/project-types/cdk-app/)** | AWS CDK applications | Building and deploying AWS infrastructure |\n| **[CDK8s Library](https://jumptothecloud.github.io/projen-project-types/project-types/cdk8s-library/)** | CDK8s libraries with Kubernetes | Creating reusable Kubernetes constructs |\n| **[CDK8s App](https://jumptothecloud.github.io/projen-project-types/project-types/cdk8s-app/)** | CDK8s applications with Kubernetes | Building and deploying Kubernetes applications |\n\n## 🧩 Available Components\n\n| Component | Description | Documentation |\n|-----------|-------------|---------------|\n| **[CDK8s Component](https://jumptothecloud.github.io/projen-project-types/components/cdk8s/)** | Kubernetes manifest generation with TypeScript | Add to any project type |\n\n## ⚑ What You Get Out of the Box\n\nEvery project template includes:\n\n- 🎨 **[Prettier](https://jumptothecloud.github.io/projen-project-types/default-configurations/#prettier-configuration)** - Consistent code formatting\n- πŸ”§ **[VSCode Setup](https://jumptothecloud.github.io/projen-project-types/default-configurations/#vscode-configuration)** - Optimized editor experience with recommended extensions\n- πŸ“ **TypeScript** - Best practices and configurations\n- πŸ§ͺ **Jest Testing** - Ready-to-use testing framework\n- 🚒 **CI/CD Pipelines** - GitHub Actions workflows\n- πŸ“š **Documentation** - Auto-generated API docs\n- πŸ”’ **Security** - Dependabot and security scanning\n\n## πŸ’‘ Example Usage\n\n### CDK Library with Custom Configuration\n\n```typescript\n// .projenrc.ts\nimport { CdkLibrary } from '@jttc/projen-project-types';\n\nconst project = new CdkLibrary({\n name: 'my-awesome-constructs',\n author: 'Your Name',\n authorAddress: 'your@email.com',\n repositoryUrl: 'https://github.com/yourusername/my-awesome-constructs.git',\n cdkVersion: '2.1.0',\n defaultReleaseBranch: 'main',\n\n // Customize as needed\n prettier: true,\n vscode: true,\n});\n\nproject.synth();\n```\n\n### CDK8s Library with Kubernetes Support\n\n```typescript\n// .projenrc.ts\nimport { Cdk8sLibrary, K8sVersion } from '@jttc/projen-project-types';\n\nconst project = new Cdk8sLibrary({\n name: 'my-k8s-constructs',\n author: 'Your Name',\n authorAddress: 'your@email.com',\n repositoryUrl: 'https://github.com/yourusername/my-k8s-constructs.git',\n cdkVersion: '2.1.0',\n defaultReleaseBranch: 'main',\n\n // CDK8s specific options\n k8sVersion: K8sVersion.V1_31,\n appPath: 'src/k8s',\n imports: ['cert-manager@v1.13.0'],\n});\n\nproject.synth();\n```\n\n## πŸ—οΈ Architecture\n\n```\nprojen-project-types/\nβ”œβ”€β”€ πŸ“ Project Types/ # Complete project templates\nβ”‚ β”œβ”€β”€ CDK Library # AWS CDK construct libraries\nβ”‚ β”œβ”€β”€ CDK App # AWS CDK applications\nβ”‚ └── CDK8s Library # Kubernetes + CDK8s libraries\nβ”œβ”€β”€ 🧩 Components/ # Reusable functionality\nβ”‚ └── CDK8s Component # Kubernetes manifest generation\n└── βš™οΈ Common Config/ # Shared configurations\n β”œβ”€β”€ Prettier # Code formatting\n β”œβ”€β”€ VSCode # Editor setup\n └── TypeScript # Language configuration\n```\n\n## πŸ“š Documentation\n\nComprehensive documentation is available at: **[jumptothecloud.github.io/projen-project-types](https://jumptothecloud.github.io/projen-project-types/)**\n\n- **[Getting Started Guide](https://jumptothecloud.github.io/projen-project-types/)**\n- **[Project Types](https://jumptothecloud.github.io/projen-project-types/project-types/cdk-library/)**\n- **[Components](https://jumptothecloud.github.io/projen-project-types/components/cdk8s/)**\n- **[Default Configurations](https://jumptothecloud.github.io/projen-project-types/default-configurations/)**\n\n## πŸ› οΈ Development\n\n### Prerequisites\n\n- **Node.js** (v18+)\n- **Yarn** package manager\n- **Python 3** (for documentation)\n\n### Setup\n\n```bash\n# Clone the repository\ngit clone https://github.com/JumpToTheCloud/projen-project-types.git\ncd projen-project-types\n\n# Install dependencies\nyarn install\n\n# Run tests\nyarn test\n\n# Build the project\nyarn build\n```\n\n### Documentation Development\n\n```bash\n# Install documentation dependencies\npip3 install mkdocs mkdocs-material mike\n\n# Serve documentation locally with hot reload\nyarn docs:serve\n\n# Build documentation\nyarn docs:build\n```\n\nThe documentation will be available at `http://localhost:8099` when using the serve command.\n\n## πŸ—ΊοΈ Roadmap\n\nPlanned features and project types:\n\n- **Next.js Projects** - Full-stack TypeScript applications\n- **Node.js APIs** - REST and GraphQL API templates\n- **React Libraries** - Component library templates\n- **Terraform Modules** - Infrastructure as Code templates\n- **Docker Components** - Containerization support\n- **Serverless Functions** - AWS Lambda and other FaaS templates\n\n## 🀝 Contributing\n\nWe welcome contributions! Here's how to get started:\n\n1. **Fork the repository**\n2. **Create a feature branch**: `git checkout -b feature/amazing-feature`\n3. **Make your changes** and add tests\n4. **Run tests**: `yarn test`\n5. **Update documentation** if needed\n6. **Commit your changes**: `git commit -m 'Add amazing feature'`\n7. **Push to the branch**: `git push origin feature/amazing-feature`\n8. **Open a Pull Request**\n\n### Contribution Guidelines\n\n- All new features should include tests\n- Documentation should be updated for new project types or components\n- Follow the existing code style and patterns\n- Ensure all CI checks pass\n\n## ❓ Support\n\n- **Documentation**: [jumptothecloud.github.io/projen-project-types](https://jumptothecloud.github.io/projen-project-types/)\n- **Issues**: [GitHub Issues](https://github.com/JumpToTheCloud/projen-project-types/issues)\n- **Discussions**: [GitHub Discussions](https://github.com/JumpToTheCloud/projen-project-types/discussions)\n\n## πŸ“„ License\n\nThis project is licensed under the **Apache 2.0 License** - see the [LICENSE](LICENSE) file for details.\n\n## 🌟 Credits\n\nBuilt with ❀️ by the [JumpToTheCloud](https://github.com/JumpToTheCloud) team.\n\nSpecial thanks to the [projen](https://projen.io) community for creating such an amazing tool for project configuration management."
99
99
  },
100
100
  "repository": {
101
101
  "type": "git",
@@ -108,6 +108,73 @@
108
108
  }
109
109
  },
110
110
  "types": {
111
+ "@jttc/projen-project-types.Cdk8App": {
112
+ "assembly": "@jttc/projen-project-types",
113
+ "base": "projen.typescript.TypeScriptProject",
114
+ "docs": {
115
+ "custom": {
116
+ "pjid": "cdk8s-app"
117
+ },
118
+ "stability": "stable",
119
+ "summary": "CDK8s Application Project."
120
+ },
121
+ "fqn": "@jttc/projen-project-types.Cdk8App",
122
+ "initializer": {
123
+ "docs": {
124
+ "stability": "stable"
125
+ },
126
+ "locationInModule": {
127
+ "filename": "src/cdk/cdk8s-app-project.ts",
128
+ "line": 14
129
+ },
130
+ "parameters": [
131
+ {
132
+ "name": "options",
133
+ "type": {
134
+ "fqn": "@jttc/projen-project-types.Cdk8sAppOptions"
135
+ }
136
+ }
137
+ ]
138
+ },
139
+ "kind": "class",
140
+ "locationInModule": {
141
+ "filename": "src/cdk/cdk8s-app-project.ts",
142
+ "line": 11
143
+ },
144
+ "methods": [
145
+ {
146
+ "docs": {
147
+ "remarks": "Order is *not* guaranteed.",
148
+ "stability": "stable",
149
+ "summary": "Called after all components are synthesized."
150
+ },
151
+ "locationInModule": {
152
+ "filename": "src/cdk/cdk8s-app-project.ts",
153
+ "line": 41
154
+ },
155
+ "name": "postSynthesize",
156
+ "overrides": "projen.Project"
157
+ }
158
+ ],
159
+ "name": "Cdk8App",
160
+ "properties": [
161
+ {
162
+ "docs": {
163
+ "stability": "stable"
164
+ },
165
+ "immutable": true,
166
+ "locationInModule": {
167
+ "filename": "src/cdk/cdk8s-app-project.ts",
168
+ "line": 12
169
+ },
170
+ "name": "cdk8s",
171
+ "type": {
172
+ "fqn": "@jttc/projen-project-types.Cdk8sComponent"
173
+ }
174
+ }
175
+ ],
176
+ "symbolId": "src/cdk/cdk8s-app-project:Cdk8App"
177
+ },
111
178
  "@jttc/projen-project-types.Cdk8sAppOptions": {
112
179
  "assembly": "@jttc/projen-project-types",
113
180
  "datatype": true,
@@ -117,12 +184,12 @@
117
184
  "fqn": "@jttc/projen-project-types.Cdk8sAppOptions",
118
185
  "interfaces": [
119
186
  "@jttc/projen-project-types.Cdk8sBaseOptions",
120
- "projen.awscdk.AwsCdkTypeScriptAppOptions"
187
+ "projen.typescript.TypeScriptProjectOptions"
121
188
  ],
122
189
  "kind": "interface",
123
190
  "locationInModule": {
124
191
  "filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
125
- "line": 48
192
+ "line": 46
126
193
  },
127
194
  "name": "Cdk8sAppOptions",
128
195
  "symbolId": "src/components/cdk8s/interfaces/Cdk8s:Cdk8sAppOptions"
@@ -137,7 +204,7 @@
137
204
  "kind": "interface",
138
205
  "locationInModule": {
139
206
  "filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
140
- "line": 14
207
+ "line": 12
141
208
  },
142
209
  "name": "Cdk8sBaseOptions",
143
210
  "properties": [
@@ -151,7 +218,7 @@
151
218
  "immutable": true,
152
219
  "locationInModule": {
153
220
  "filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
154
- "line": 26
221
+ "line": 24
155
222
  },
156
223
  "name": "appFile",
157
224
  "optional": true,
@@ -169,7 +236,7 @@
169
236
  "immutable": true,
170
237
  "locationInModule": {
171
238
  "filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
172
- "line": 20
239
+ "line": 18
173
240
  },
174
241
  "name": "appPath",
175
242
  "optional": true,
@@ -186,7 +253,7 @@
186
253
  "immutable": true,
187
254
  "locationInModule": {
188
255
  "filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
189
- "line": 30
256
+ "line": 28
190
257
  },
191
258
  "name": "imports",
192
259
  "optional": true,
@@ -209,7 +276,7 @@
209
276
  "immutable": true,
210
277
  "locationInModule": {
211
278
  "filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
212
- "line": 42
279
+ "line": 40
213
280
  },
214
281
  "name": "k8sVersion",
215
282
  "optional": true,
@@ -227,7 +294,7 @@
227
294
  "immutable": true,
228
295
  "locationInModule": {
229
296
  "filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
230
- "line": 36
297
+ "line": 34
231
298
  },
232
299
  "name": "outputPath",
233
300
  "optional": true,
@@ -289,7 +356,7 @@
289
356
  },
290
357
  "locationInModule": {
291
358
  "filename": "src/components/cdk8s/cdk8s.ts",
292
- "line": 109
359
+ "line": 117
293
360
  },
294
361
  "name": "postSynthesize",
295
362
  "overrides": "projen.Component"
@@ -417,7 +484,7 @@
417
484
  },
418
485
  "locationInModule": {
419
486
  "filename": "src/cdk/cdk8s-library-project.ts",
420
- "line": 27
487
+ "line": 39
421
488
  },
422
489
  "name": "postSynthesize",
423
490
  "overrides": "projen.Project"
@@ -456,7 +523,7 @@
456
523
  "kind": "interface",
457
524
  "locationInModule": {
458
525
  "filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
459
- "line": 45
526
+ "line": 43
460
527
  },
461
528
  "name": "Cdk8sLibraryOptions",
462
529
  "symbolId": "src/components/cdk8s/interfaces/Cdk8s:Cdk8sLibraryOptions"
@@ -542,7 +609,7 @@
542
609
  "kind": "enum",
543
610
  "locationInModule": {
544
611
  "filename": "src/components/cdk8s/interfaces/Cdk8s.ts",
545
- "line": 6
612
+ "line": 4
546
613
  },
547
614
  "members": [
548
615
  {
@@ -580,6 +647,6 @@
580
647
  "symbolId": "src/components/cdk8s/interfaces/Cdk8s:K8sVersion"
581
648
  }
582
649
  },
583
- "version": "1.0.0-beta.4",
584
- "fingerprint": "1LiBfpSGho+D/goBIPYFvlL7FcnHZdZV42rreCT+Hmo="
650
+ "version": "1.0.0-beta.6",
651
+ "fingerprint": "/ibgZsJMx+OT+DBlTTPAOvuZmt06x9qeU4mWRg6DrzU="
585
652
  }