package-installer-cli 1.3.3 → 1.4.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.
- checksums.yaml +4 -4
- data/dist/commands/email.js +1140 -0
- data/dist/email-templates/bugReport.js +108 -0
- data/dist/email-templates/collectors/bugReport.js +41 -0
- data/dist/email-templates/collectors/common.js +56 -0
- data/dist/email-templates/collectors/docs.js +41 -0
- data/dist/email-templates/collectors/featureRequest.js +47 -0
- data/dist/email-templates/collectors/improvement.js +52 -0
- data/dist/email-templates/collectors/index.js +8 -0
- data/dist/email-templates/collectors/question.js +31 -0
- data/dist/email-templates/collectors/templateRequest.js +53 -0
- data/dist/email-templates/docs.js +111 -0
- data/dist/email-templates/featureRequest.js +111 -0
- data/dist/email-templates/generator.js +62 -0
- data/dist/email-templates/improvement.js +121 -0
- data/dist/email-templates/index.js +14 -0
- data/dist/email-templates/question.js +101 -0
- data/dist/email-templates/styles.js +168 -0
- data/dist/email-templates/templateRequest.js +120 -0
- data/dist/email-templates/testEmail.js +56 -0
- data/dist/email-templates/types.js +1 -0
- data/dist/index.js +29 -1
- data/dist/utils/featureInstaller.js +4 -11
- data/features/ai/ai.json +547 -0
- data/features/analytics/analytics.json +4 -0
- data/features/auth/auth.json +473 -0
- data/features/auth/auth0/django/backend/apiexample/urls.py +10 -0
- data/features/auth/auth0/django/backend/apiexample/validator.py +21 -0
- data/features/auth/auth0/django/backend/apiexample/views.py +30 -0
- data/features/auth/auth0/django/backend/requirements.txt +4 -0
- data/features/auth/auth0/django/web-app/requirements.txt +4 -0
- data/features/auth/auth0/django/web-app/webappexample/settings.py +28 -0
- data/features/auth/auth0/django/web-app/webappexample/templates/index.html +16 -0
- data/features/auth/auth0/django/web-app/webappexample/urls.py +10 -0
- data/features/auth/auth0/django/web-app/webappexample/views.py +52 -0
- data/features/auth/auth0/go/backend/go.mod +8 -0
- data/features/auth/auth0/go/backend/main.go +60 -0
- data/features/auth/auth0/go/backend/middleware/jwt.go +81 -0
- data/features/auth/auth0/go/web-app/auth.go +56 -0
- data/features/auth/auth0/go/web-app/callback.go +52 -0
- data/features/auth/auth0/go/web-app/go.mod +11 -0
- data/features/auth/auth0/go/web-app/isAuthenticated.go +20 -0
- data/features/auth/auth0/go/web-app/login.go +47 -0
- data/features/auth/auth0/go/web-app/logout.go +38 -0
- data/features/auth/auth0/go/web-app/main.go +31 -0
- data/features/auth/auth0/go/web-app/router.go +44 -0
- data/features/auth/auth0/go/web-app/user.go +18 -0
- data/features/auth/auth0/ruby-on-rails/backend/Gemfile +1 -0
- data/features/auth/auth0/ruby-on-rails/backend/app/controllers/application_controller.rb +5 -0
- data/features/auth/auth0/ruby-on-rails/backend/app/controllers/concern/secured.rb +60 -0
- data/features/auth/auth0/ruby-on-rails/backend/app/controllers/private_controller.rb +6 -0
- data/features/auth/auth0/ruby-on-rails/backend/app/controllers/public-controller.rb +6 -0
- data/features/auth/auth0/ruby-on-rails/backend/app/lib/auth0_client.rb +59 -0
- data/features/auth/auth0/ruby-on-rails/web-app/Gemfile +2 -0
- data/features/auth/auth0/ruby-on-rails/web-app/auth0_controller.rb +41 -0
- data/features/auth/auth0/ruby-on-rails/web-app/config/auth0.yml +4 -0
- data/features/auth/auth0/ruby-on-rails/web-app/config/initializers/auth0.rb +14 -0
- data/features/auth/auth0/ruby-on-rails/web-app/config/routes.rb +6 -0
- data/features/auth/auth0/ruby-on-rails/web-app/config/secured.rb +11 -0
- data/features/auth/clerk/go/clerk_client.go +28 -0
- data/features/auth/clerk/go/go.mod +5 -0
- data/features/auth/clerk/go/main.go +82 -0
- data/features/auth/clerk/nextjs/typescript/app/layout.tsx +2 -2
- data/features/auth/clerk/ruby-on-rails/Gemfile +1 -0
- data/features/auth/clerk/ruby-on-rails/app.rb +50 -0
- data/features/auth/clerk/ruby-on-rails/config/initializers/clerk.rb +4 -0
- data/features/aws/aws.json +5207 -0
- data/features/database/database.json +246 -0
- data/features/docker/docker.json +108 -0
- data/features/features.json +44 -7321
- data/features/gitignore/gitignore.json +61 -0
- data/features/monitoring/monitoring.json +5 -0
- data/features/payment/payment.json +347 -0
- data/features/storage/storage.json +371 -0
- data/features/testing/jest/angularjs/typescript/tests/angularjs.test.ts +12 -0
- data/features/testing/jest/expressjs/javascript/tests/expressjs.test.js +10 -0
- data/features/testing/jest/expressjs/typescript/tests/expressjs.test.ts +10 -0
- data/features/testing/jest/nestjs/typescript/tests/nestjs.test.ts +10 -0
- data/features/testing/jest/nextjs/javascript/tests/nextjs.test.js +10 -0
- data/features/testing/jest/nextjs/typescript/tests/nextjs.test.ts +10 -0
- data/features/testing/jest/nuxtjs/typescript/tests/nuxtjs.test.ts +9 -0
- data/features/testing/jest/reactjs/javascript/tests/reactjs.test.js +10 -0
- data/features/testing/jest/reactjs/typescript/tests/reactjs.test.ts +10 -0
- data/features/testing/jest/reactjs-expressjs-shadcn/javascript/tests/reactjs.expressjs.shadcn.test.js +16 -0
- data/features/testing/jest/reactjs-expressjs-shadcn/typescript/tests/reactjs.expressjs.shadcn.test.ts +16 -0
- data/features/testing/jest/reactjs-nestjs-shadcn/typescript/tests/reactjs.nestjs.shadcn.test.ts +14 -0
- data/features/testing/jest/remixjs/typescript/tests/remixjs.test.ts +9 -0
- data/features/testing/jest/vuejs/javascript/tests/vuejs.test.ts +9 -0
- data/features/testing/jest/vuejs/typescript/tests/vuejs.test.ts +9 -0
- data/features/testing/testing.json +102 -0
- data/features/ui/ui.json +91 -0
- metadata +88 -8
- data/features/testing/jest/angularjs/tests/angularjs.test.js +0 -12
- data/features/testing/jest/expressjs/tests/javascript/expressjs.test.js +0 -12
- data/features/testing/jest/expressjs/tests/typescript/expressjs.test.ts +0 -12
- data/features/testing/jest/go/tests/go.test.js +0 -12
- data/features/testing/jest/nextjs/tests/javascript/nextjs.test.js +0 -12
- data/features/testing/jest/nextjs/tests/typescript/nextjs.test.ts +0 -12
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"angularjs": {
|
|
3
|
+
".gitignore": {
|
|
4
|
+
"action": "create"
|
|
5
|
+
}
|
|
6
|
+
},
|
|
7
|
+
"django": {
|
|
8
|
+
".gitignore": {
|
|
9
|
+
"action": "create"
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"flask": {
|
|
13
|
+
".gitignore": {
|
|
14
|
+
"action": "create"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"go": {
|
|
18
|
+
".gitignore": {
|
|
19
|
+
"action": "create"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"nestjs": {
|
|
23
|
+
".gitignore": {
|
|
24
|
+
"action": "create"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"nextjs": {
|
|
28
|
+
".gitignore": {
|
|
29
|
+
"action": "create"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"nuxtjs": {
|
|
33
|
+
".gitignore": {
|
|
34
|
+
"action": "create"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"python": {
|
|
38
|
+
".gitignore": {
|
|
39
|
+
"action": "create"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"react-native": {
|
|
43
|
+
".gitignore": {
|
|
44
|
+
"action": "create"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"ruby": {
|
|
48
|
+
".gitignore": {
|
|
49
|
+
"action": "create"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"rust": {
|
|
53
|
+
".gitignore": {
|
|
54
|
+
"action": "create"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"vuejs": {
|
|
58
|
+
".gitignore": {
|
|
59
|
+
"action": "create"
|
|
60
|
+
}}
|
|
61
|
+
}
|
|
@@ -0,0 +1,347 @@
|
|
|
1
|
+
{
|
|
2
|
+
"paypal": {
|
|
3
|
+
"expressjs": {
|
|
4
|
+
"javascript": {
|
|
5
|
+
".env": {
|
|
6
|
+
"action": "append"
|
|
7
|
+
},
|
|
8
|
+
"controllers/paypalControllers.js": {
|
|
9
|
+
"action": "create"
|
|
10
|
+
},
|
|
11
|
+
"index.js": {
|
|
12
|
+
"action": "prepend"
|
|
13
|
+
},
|
|
14
|
+
"routes/paypalRoutes.js": {
|
|
15
|
+
"action": "create"
|
|
16
|
+
},
|
|
17
|
+
"utils/paypal.js": {
|
|
18
|
+
"action": "create"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"typescript": {
|
|
22
|
+
".env": {
|
|
23
|
+
"action": "append"
|
|
24
|
+
},
|
|
25
|
+
"controllers/paypalControllers.ts": {
|
|
26
|
+
"action": "create"
|
|
27
|
+
},
|
|
28
|
+
"index.ts": {
|
|
29
|
+
"action": "prepend"
|
|
30
|
+
},
|
|
31
|
+
"routes/paypalRoutes.ts": {
|
|
32
|
+
"action": "create"
|
|
33
|
+
},
|
|
34
|
+
"utils/paypal.ts": {
|
|
35
|
+
"action": "create"
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"nestjs": {
|
|
40
|
+
"typescript": {
|
|
41
|
+
".env": {
|
|
42
|
+
"action": "append"
|
|
43
|
+
},
|
|
44
|
+
"src/paypal.controller.ts": {
|
|
45
|
+
"action": "create"
|
|
46
|
+
},
|
|
47
|
+
"src/paypal.service.ts": {
|
|
48
|
+
"action": "create"
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"nextjs": {
|
|
53
|
+
"javascript": {
|
|
54
|
+
".env": {
|
|
55
|
+
"action": "append"
|
|
56
|
+
},
|
|
57
|
+
"app/api/paypal/capture-payment/route.js": {
|
|
58
|
+
"action": "create"
|
|
59
|
+
},
|
|
60
|
+
"app/api/paypal/create-payment/route.js": {
|
|
61
|
+
"action": "create"
|
|
62
|
+
},
|
|
63
|
+
"app/api/paypal/refund/route.ts": {
|
|
64
|
+
"action": "create"
|
|
65
|
+
},
|
|
66
|
+
"app/payment-checkout/page.tsx": {
|
|
67
|
+
"action": "create"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"typescript": {
|
|
71
|
+
".env": {
|
|
72
|
+
"action": "append"
|
|
73
|
+
},
|
|
74
|
+
"app/api/paypal/capture-payment/route.ts": {
|
|
75
|
+
"action": "create"
|
|
76
|
+
},
|
|
77
|
+
"app/api/paypal/create-payment/route.ts": {
|
|
78
|
+
"action": "create"
|
|
79
|
+
},
|
|
80
|
+
"app/api/paypal/refund/route.ts": {
|
|
81
|
+
"action": "create"
|
|
82
|
+
},
|
|
83
|
+
"app/payment-checkout/page.tsx": {
|
|
84
|
+
"action": "create"
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"remixjs": {
|
|
89
|
+
"typescript": {
|
|
90
|
+
".env": {
|
|
91
|
+
"action": "append"
|
|
92
|
+
},
|
|
93
|
+
"app/routes/api/paypal.ts": {
|
|
94
|
+
"action": "create"
|
|
95
|
+
},
|
|
96
|
+
"app/routes/checkout.tsx": {
|
|
97
|
+
"action": "create"
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
"razorpay": {
|
|
103
|
+
"expressjs": {
|
|
104
|
+
"javascript": {
|
|
105
|
+
".env": {
|
|
106
|
+
"action": "append"
|
|
107
|
+
},
|
|
108
|
+
"controllers/payment.js": {
|
|
109
|
+
"action": "create"
|
|
110
|
+
},
|
|
111
|
+
"index.js": {
|
|
112
|
+
"action": "prepend"
|
|
113
|
+
},
|
|
114
|
+
"package.json": {
|
|
115
|
+
"action": "install"
|
|
116
|
+
},
|
|
117
|
+
"routes/payment.js": {
|
|
118
|
+
"action": "create"
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"typescript": {
|
|
122
|
+
".env": {
|
|
123
|
+
"action": "append"
|
|
124
|
+
},
|
|
125
|
+
"controllers/payment.ts": {
|
|
126
|
+
"action": "create"
|
|
127
|
+
},
|
|
128
|
+
"index.ts": {
|
|
129
|
+
"action": "prepend"
|
|
130
|
+
},
|
|
131
|
+
"package.json": {
|
|
132
|
+
"action": "install"
|
|
133
|
+
},
|
|
134
|
+
"routes/payment.ts": {
|
|
135
|
+
"action": "create"
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
"nestjs": {
|
|
140
|
+
"typescript": {
|
|
141
|
+
".env": {
|
|
142
|
+
"action": "append"
|
|
143
|
+
},
|
|
144
|
+
"package.json": {
|
|
145
|
+
"action": "install"
|
|
146
|
+
},
|
|
147
|
+
"src/payment.controller.ts": {
|
|
148
|
+
"action": "create"
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"nextjs": {
|
|
153
|
+
"javascript": {
|
|
154
|
+
".env": {
|
|
155
|
+
"action": "append"
|
|
156
|
+
},
|
|
157
|
+
"app/api/payment/route.js": {
|
|
158
|
+
"action": "create"
|
|
159
|
+
},
|
|
160
|
+
"app/api/refund/route.js": {
|
|
161
|
+
"action": "create"
|
|
162
|
+
},
|
|
163
|
+
"app/payment-checkout/page.jsx": {
|
|
164
|
+
"action": "create"
|
|
165
|
+
},
|
|
166
|
+
"package.json": {
|
|
167
|
+
"action": "install"
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
"typescript": {
|
|
171
|
+
".env": {
|
|
172
|
+
"action": "append"
|
|
173
|
+
},
|
|
174
|
+
"app/api/payment/route.ts": {
|
|
175
|
+
"action": "create"
|
|
176
|
+
},
|
|
177
|
+
"app/api/refund/route.ts": {
|
|
178
|
+
"action": "create"
|
|
179
|
+
},
|
|
180
|
+
"app/payment-checkout/page.tsx": {
|
|
181
|
+
"action": "create"
|
|
182
|
+
},
|
|
183
|
+
"package.json": {
|
|
184
|
+
"action": "install"
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
"remixjs": {
|
|
189
|
+
"typescript": {
|
|
190
|
+
".env": {
|
|
191
|
+
"action": "append"
|
|
192
|
+
},
|
|
193
|
+
"app/routes/api.orders.ts": {
|
|
194
|
+
"action": "create"
|
|
195
|
+
},
|
|
196
|
+
"app/routes/api.refunds.ts": {
|
|
197
|
+
"action": "create"
|
|
198
|
+
},
|
|
199
|
+
"app/routes/checkout.tsx": {
|
|
200
|
+
"action": "create"
|
|
201
|
+
},
|
|
202
|
+
"package.json": {
|
|
203
|
+
"action": "install"
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
"stripe": {
|
|
209
|
+
"expressjs": {
|
|
210
|
+
"javascript": {
|
|
211
|
+
".env": {
|
|
212
|
+
"action": "append"
|
|
213
|
+
},
|
|
214
|
+
"controllers/stripeController.js": {
|
|
215
|
+
"action": "create"
|
|
216
|
+
},
|
|
217
|
+
"index.js": {
|
|
218
|
+
"action": "prepend"
|
|
219
|
+
},
|
|
220
|
+
"package.json": {
|
|
221
|
+
"action": "install"
|
|
222
|
+
},
|
|
223
|
+
"routes/stripeRoutes.js": {
|
|
224
|
+
"action": "create"
|
|
225
|
+
}
|
|
226
|
+
},
|
|
227
|
+
"typescript": {
|
|
228
|
+
".env": {
|
|
229
|
+
"action": "append"
|
|
230
|
+
},
|
|
231
|
+
"controllers/stripeControllers.ts": {
|
|
232
|
+
"action": "create"
|
|
233
|
+
},
|
|
234
|
+
"index.ts": {
|
|
235
|
+
"action": "prepend"
|
|
236
|
+
},
|
|
237
|
+
"package.json": {
|
|
238
|
+
"action": "install"
|
|
239
|
+
},
|
|
240
|
+
"routes/stripeRoutes.ts": {
|
|
241
|
+
"action": "create"
|
|
242
|
+
},
|
|
243
|
+
"utils/stripe.ts": {
|
|
244
|
+
"action": "create"
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
},
|
|
248
|
+
"nestjs": {
|
|
249
|
+
"typescript": {
|
|
250
|
+
".env": {
|
|
251
|
+
"action": "append"
|
|
252
|
+
},
|
|
253
|
+
"package.json": {
|
|
254
|
+
"action": "install"
|
|
255
|
+
},
|
|
256
|
+
"src/app.module.ts": {
|
|
257
|
+
"action": "prepend"
|
|
258
|
+
},
|
|
259
|
+
"src/stripe/stripe.controller.ts": {
|
|
260
|
+
"action": "create"
|
|
261
|
+
},
|
|
262
|
+
"src/stripe/stripe.module.ts": {
|
|
263
|
+
"action": "create"
|
|
264
|
+
},
|
|
265
|
+
"src/stripe/stripe.service.ts": {
|
|
266
|
+
"action": "create"
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
"nextjs": {
|
|
271
|
+
"javascript": {
|
|
272
|
+
".env": {
|
|
273
|
+
"action": "append"
|
|
274
|
+
},
|
|
275
|
+
"app/api/stripe/create-payment-intent/route.js": {
|
|
276
|
+
"action": "create"
|
|
277
|
+
},
|
|
278
|
+
"app/api/stripe/refund/route.js": {
|
|
279
|
+
"action": "create"
|
|
280
|
+
},
|
|
281
|
+
"app/payment-checkout/page.jsx": {
|
|
282
|
+
"action": "create"
|
|
283
|
+
},
|
|
284
|
+
"package.json": {
|
|
285
|
+
"action": "install"
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
"typescript": {
|
|
289
|
+
".env": {
|
|
290
|
+
"action": "append"
|
|
291
|
+
},
|
|
292
|
+
"app/api/stripe/create-payment-intent/route.ts": {
|
|
293
|
+
"action": "create"
|
|
294
|
+
},
|
|
295
|
+
"app/api/stripe/refund/route.ts": {
|
|
296
|
+
"action": "create"
|
|
297
|
+
},
|
|
298
|
+
"app/payment-checkout/page.tsx": {
|
|
299
|
+
"action": "create"
|
|
300
|
+
},
|
|
301
|
+
"lib/stripe.ts": {
|
|
302
|
+
"action": "create"
|
|
303
|
+
},
|
|
304
|
+
"package.json": {
|
|
305
|
+
"action": "install"
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
"remixjs": {
|
|
310
|
+
"typescript": {
|
|
311
|
+
".env": {
|
|
312
|
+
"action": "append"
|
|
313
|
+
},
|
|
314
|
+
"app/routes/checkout.tsx": {
|
|
315
|
+
"action": "create"
|
|
316
|
+
},
|
|
317
|
+
"app/routes/refund.tsx": {
|
|
318
|
+
"action": "create"
|
|
319
|
+
},
|
|
320
|
+
"app/utils/stripe.server.ts": {
|
|
321
|
+
"action": "create"
|
|
322
|
+
},
|
|
323
|
+
"package.json": {
|
|
324
|
+
"action": "install"
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
"vuejs": {
|
|
329
|
+
"javascript": {
|
|
330
|
+
"package.json": {
|
|
331
|
+
"action": "install"
|
|
332
|
+
},
|
|
333
|
+
"src/components/VueStripe.vue": {
|
|
334
|
+
"action": "create"
|
|
335
|
+
}
|
|
336
|
+
},
|
|
337
|
+
"typescript": {
|
|
338
|
+
"package.json": {
|
|
339
|
+
"action": "install"
|
|
340
|
+
},
|
|
341
|
+
"src/components/VueStripe.vue": {
|
|
342
|
+
"action": "create"
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
}
|