@nikovirtala/projen-constructs 0.0.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.
package/.jsii ADDED
@@ -0,0 +1,249 @@
1
+ {
2
+ "author": {
3
+ "email": "niko.virtala@hey.com",
4
+ "name": "Niko Virtala",
5
+ "roles": [
6
+ "author"
7
+ ]
8
+ },
9
+ "dependencies": {
10
+ "@nikovirtala/projen-vitest": "^2.1.5",
11
+ "constructs": "^10.4.3",
12
+ "projen": "^0.98.10"
13
+ },
14
+ "dependencyClosure": {
15
+ "@nikovirtala/projen-vitest": {
16
+ "targets": {
17
+ "js": {
18
+ "npm": "@nikovirtala/projen-vitest"
19
+ }
20
+ }
21
+ },
22
+ "constructs": {
23
+ "targets": {
24
+ "dotnet": {
25
+ "namespace": "Constructs",
26
+ "packageId": "Constructs"
27
+ },
28
+ "go": {
29
+ "moduleName": "github.com/aws/constructs-go"
30
+ },
31
+ "java": {
32
+ "maven": {
33
+ "artifactId": "constructs",
34
+ "groupId": "software.constructs"
35
+ },
36
+ "package": "software.constructs"
37
+ },
38
+ "js": {
39
+ "npm": "constructs"
40
+ },
41
+ "python": {
42
+ "distName": "constructs",
43
+ "module": "constructs"
44
+ }
45
+ }
46
+ },
47
+ "projen": {
48
+ "submodules": {
49
+ "projen.awscdk": {},
50
+ "projen.build": {},
51
+ "projen.cdk": {},
52
+ "projen.cdk8s": {},
53
+ "projen.cdktf": {},
54
+ "projen.circleci": {},
55
+ "projen.github": {},
56
+ "projen.github.workflows": {},
57
+ "projen.gitlab": {},
58
+ "projen.java": {},
59
+ "projen.javascript": {},
60
+ "projen.javascript.biome_config": {},
61
+ "projen.python": {},
62
+ "projen.release": {},
63
+ "projen.typescript": {},
64
+ "projen.vscode": {},
65
+ "projen.web": {}
66
+ },
67
+ "targets": {
68
+ "go": {
69
+ "moduleName": "github.com/projen/projen-go"
70
+ },
71
+ "java": {
72
+ "maven": {
73
+ "artifactId": "projen",
74
+ "groupId": "io.github.cdklabs"
75
+ },
76
+ "package": "io.github.cdklabs.projen"
77
+ },
78
+ "js": {
79
+ "npm": "projen"
80
+ },
81
+ "python": {
82
+ "distName": "projen",
83
+ "module": "projen"
84
+ }
85
+ }
86
+ }
87
+ },
88
+ "description": "Base projen project types with standard configuration",
89
+ "docs": {
90
+ "stability": "stable"
91
+ },
92
+ "homepage": "https://github.com/nikovirtala/projen-constructs.git",
93
+ "jsiiVersion": "5.9.13 (build cc3e9a8)",
94
+ "license": "Apache-2.0",
95
+ "metadata": {
96
+ "jsii": {
97
+ "pacmak": {
98
+ "hasDefaultInterfaces": true
99
+ }
100
+ },
101
+ "tscRootDir": "src"
102
+ },
103
+ "name": "@nikovirtala/projen-constructs",
104
+ "readme": {
105
+ "markdown": "# @nikovirtala/projen-constructs\n\nProjen project types with standard configuration for consistent project setup across all repositories.\n\n## Installation\n\n```bash\npnpm add -D @nikovirtala/projen-constructs projen constructs\n```\n\n## Standard Configuration\n\nAll project types include:\n\n- **Author**: Niko Virtala (niko.virtala@hey.com)\n- **Default Release Branch**: main\n- **Package Manager**: pnpm 10\n- **Node Version**: 22.21.1\n- **TypeScript**: 5.9.3\n- **Module Type**: ES modules\n- **Code Quality**: Biome for formatting and linting\n- **Testing**: Vitest\n- **Auto-merge**: Enabled with auto-approve\n- **VSCode**: Recommended extensions and settings\n- **mise**: Node version management\n- **CDK Version**: 2.223.0 (for CDK projects)\n- **JSII Version**: ~5.9.3 (for JSII projects)\n\n## Customization\n\nOverride any option by passing it to the constructor:\n\n```typescript\nconst project = new JsiiProject({\n name: \"my-project\",\n repositoryUrl: \"https://github.com/nikovirtala/my-project.git\",\n minNodeVersion: \"20.0.0\",\n author: \"Custom Author\",\n authorAddress: \"custom@example.com\",\n tsconfig: {\n compilerOptions: {\n noUnusedLocals: false, // Override individual compiler options\n },\n },\n biomeOptions: {\n biomeConfig: {\n formatter: {\n lineWidth: 100, // Override individual formatter options\n },\n },\n },\n});\n```\n\n## Usage\n\n### AWS CDK Construct Library Projects\n\n```typescript\nimport { AwsCdkConstructLibraryProject } from \"@nikovirtala/projen-constructs\";\n\nconst project = new AwsCdkConstructLibraryProject({\n name: \"my-cdk-construct\",\n repositoryUrl: \"https://github.com/nikovirtala/my-cdk-construct.git\",\n});\n\nproject.synth();\n```\n\n### AWS CDK TypeScript App Projects\n\n```typescript\nimport { AwsCdkTypeScriptAppProject } from \"@nikovirtala/projen-constructs\";\n\nconst project = new AwsCdkTypeScriptAppProject({\n name: \"my-cdk-app\",\n repositoryUrl: \"https://github.com/nikovirtala/my-cdk-app.git\",\n});\n\nproject.synth();\n```\n\n### JSII Projects\n\n```typescript\nimport { JsiiProject } from \"@nikovirtala/projen-constructs\";\n\nconst project = new JsiiProject({\n name: \"my-jsii-project\",\n repositoryUrl: \"https://github.com/nikovirtala/my-jsii-project.git\",\n});\n\nproject.synth();\n```\n\n### TypeScript Projects\n\n```typescript\nimport { TypeScriptProject } from \"@nikovirtala/projen-constructs\";\n\nconst project = new TypeScriptProject({\n name: \"my-typescript-project\",\n repositoryUrl: \"https://github.com/nikovirtala/my-typescript-project.git\",\n});\n\nproject.synth();\n```\n"
106
+ },
107
+ "repository": {
108
+ "type": "git",
109
+ "url": "https://github.com/nikovirtala/projen-constructs.git"
110
+ },
111
+ "schema": "jsii/0.10.0",
112
+ "targets": {
113
+ "js": {
114
+ "npm": "@nikovirtala/projen-constructs"
115
+ }
116
+ },
117
+ "types": {
118
+ "@nikovirtala/projen-constructs.AwsCdkConstructLibraryProject": {
119
+ "assembly": "@nikovirtala/projen-constructs",
120
+ "base": "projen.awscdk.AwsCdkConstructLibrary",
121
+ "docs": {
122
+ "stability": "stable"
123
+ },
124
+ "fqn": "@nikovirtala/projen-constructs.AwsCdkConstructLibraryProject",
125
+ "initializer": {
126
+ "docs": {
127
+ "stability": "stable"
128
+ },
129
+ "locationInModule": {
130
+ "filename": "src/awscdk-construct-project.ts",
131
+ "line": 5
132
+ },
133
+ "parameters": [
134
+ {
135
+ "name": "options",
136
+ "type": {
137
+ "fqn": "projen.awscdk.AwsCdkConstructLibraryOptions"
138
+ }
139
+ }
140
+ ]
141
+ },
142
+ "kind": "class",
143
+ "locationInModule": {
144
+ "filename": "src/awscdk-construct-project.ts",
145
+ "line": 4
146
+ },
147
+ "name": "AwsCdkConstructLibraryProject",
148
+ "symbolId": "src/awscdk-construct-project:AwsCdkConstructLibraryProject"
149
+ },
150
+ "@nikovirtala/projen-constructs.AwsCdkTypeScriptAppProject": {
151
+ "assembly": "@nikovirtala/projen-constructs",
152
+ "base": "projen.awscdk.AwsCdkTypeScriptApp",
153
+ "docs": {
154
+ "stability": "stable"
155
+ },
156
+ "fqn": "@nikovirtala/projen-constructs.AwsCdkTypeScriptAppProject",
157
+ "initializer": {
158
+ "docs": {
159
+ "stability": "stable"
160
+ },
161
+ "locationInModule": {
162
+ "filename": "src/awscdk-app-project.ts",
163
+ "line": 5
164
+ },
165
+ "parameters": [
166
+ {
167
+ "name": "options",
168
+ "type": {
169
+ "fqn": "projen.awscdk.AwsCdkTypeScriptAppOptions"
170
+ }
171
+ }
172
+ ]
173
+ },
174
+ "kind": "class",
175
+ "locationInModule": {
176
+ "filename": "src/awscdk-app-project.ts",
177
+ "line": 4
178
+ },
179
+ "name": "AwsCdkTypeScriptAppProject",
180
+ "symbolId": "src/awscdk-app-project:AwsCdkTypeScriptAppProject"
181
+ },
182
+ "@nikovirtala/projen-constructs.JsiiProject": {
183
+ "assembly": "@nikovirtala/projen-constructs",
184
+ "base": "projen.cdk.JsiiProject",
185
+ "docs": {
186
+ "stability": "stable"
187
+ },
188
+ "fqn": "@nikovirtala/projen-constructs.JsiiProject",
189
+ "initializer": {
190
+ "docs": {
191
+ "stability": "stable"
192
+ },
193
+ "locationInModule": {
194
+ "filename": "src/jsii-project.ts",
195
+ "line": 5
196
+ },
197
+ "parameters": [
198
+ {
199
+ "name": "options",
200
+ "type": {
201
+ "fqn": "projen.cdk.JsiiProjectOptions"
202
+ }
203
+ }
204
+ ]
205
+ },
206
+ "kind": "class",
207
+ "locationInModule": {
208
+ "filename": "src/jsii-project.ts",
209
+ "line": 4
210
+ },
211
+ "name": "JsiiProject",
212
+ "symbolId": "src/jsii-project:JsiiProject"
213
+ },
214
+ "@nikovirtala/projen-constructs.TypeScriptProject": {
215
+ "assembly": "@nikovirtala/projen-constructs",
216
+ "base": "projen.typescript.TypeScriptProject",
217
+ "docs": {
218
+ "stability": "stable"
219
+ },
220
+ "fqn": "@nikovirtala/projen-constructs.TypeScriptProject",
221
+ "initializer": {
222
+ "docs": {
223
+ "stability": "stable"
224
+ },
225
+ "locationInModule": {
226
+ "filename": "src/typescript-project.ts",
227
+ "line": 5
228
+ },
229
+ "parameters": [
230
+ {
231
+ "name": "options",
232
+ "type": {
233
+ "fqn": "projen.typescript.TypeScriptProjectOptions"
234
+ }
235
+ }
236
+ ]
237
+ },
238
+ "kind": "class",
239
+ "locationInModule": {
240
+ "filename": "src/typescript-project.ts",
241
+ "line": 4
242
+ },
243
+ "name": "TypeScriptProject",
244
+ "symbolId": "src/typescript-project:TypeScriptProject"
245
+ }
246
+ },
247
+ "version": "0.0.0",
248
+ "fingerprint": "kAsqtU/8eHv6zWZVIT4V99xxXbRXdWaPFwwzhRqU9YI="
249
+ }