@storm-software/config 1.107.0 → 1.108.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/dist/schema.d.ts CHANGED
@@ -1061,6 +1061,28 @@ declare const WorkspaceReleaseConfigSchema: z.ZodObject<{
1061
1061
  header?: string | undefined;
1062
1062
  footer?: string | undefined;
1063
1063
  }>;
1064
+ declare const WorkspaceAccountConfigSchema: z.ZodObject<{
1065
+ twitter: z.ZodDefault<z.ZodString>;
1066
+ discord: z.ZodDefault<z.ZodString>;
1067
+ telegram: z.ZodDefault<z.ZodString>;
1068
+ slack: z.ZodDefault<z.ZodString>;
1069
+ medium: z.ZodDefault<z.ZodString>;
1070
+ github: z.ZodDefault<z.ZodString>;
1071
+ }, "strip", z.ZodTypeAny, {
1072
+ github: string;
1073
+ twitter: string;
1074
+ discord: string;
1075
+ telegram: string;
1076
+ slack: string;
1077
+ medium: string;
1078
+ }, {
1079
+ github?: string | undefined;
1080
+ twitter?: string | undefined;
1081
+ discord?: string | undefined;
1082
+ telegram?: string | undefined;
1083
+ slack?: string | undefined;
1084
+ medium?: string | undefined;
1085
+ }>;
1064
1086
  declare const WorkspaceDirectoryConfigSchema: z.ZodObject<{
1065
1087
  cache: z.ZodOptional<z.ZodString>;
1066
1088
  data: z.ZodOptional<z.ZodString>;
@@ -1097,6 +1119,7 @@ declare const StormConfigSchema: z.ZodObject<{
1097
1119
  homepage: z.ZodDefault<z.ZodString>;
1098
1120
  docs: z.ZodDefault<z.ZodString>;
1099
1121
  licensing: z.ZodDefault<z.ZodString>;
1122
+ contact: z.ZodDefault<z.ZodString>;
1100
1123
  branch: z.ZodDefault<z.ZodString>;
1101
1124
  preid: z.ZodOptional<z.ZodString>;
1102
1125
  owner: z.ZodDefault<z.ZodString>;
@@ -1123,6 +1146,28 @@ declare const StormConfigSchema: z.ZodObject<{
1123
1146
  header?: string | undefined;
1124
1147
  footer?: string | undefined;
1125
1148
  }>;
1149
+ account: z.ZodObject<{
1150
+ twitter: z.ZodDefault<z.ZodString>;
1151
+ discord: z.ZodDefault<z.ZodString>;
1152
+ telegram: z.ZodDefault<z.ZodString>;
1153
+ slack: z.ZodDefault<z.ZodString>;
1154
+ medium: z.ZodDefault<z.ZodString>;
1155
+ github: z.ZodDefault<z.ZodString>;
1156
+ }, "strip", z.ZodTypeAny, {
1157
+ github: string;
1158
+ twitter: string;
1159
+ discord: string;
1160
+ telegram: string;
1161
+ slack: string;
1162
+ medium: string;
1163
+ }, {
1164
+ github?: string | undefined;
1165
+ twitter?: string | undefined;
1166
+ discord?: string | undefined;
1167
+ telegram?: string | undefined;
1168
+ slack?: string | undefined;
1169
+ medium?: string | undefined;
1170
+ }>;
1126
1171
  mode: z.ZodDefault<z.ZodEnum<["development", "staging", "production"]>>;
1127
1172
  workspaceRoot: z.ZodDefault<z.ZodString>;
1128
1173
  externalPackagePatterns: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
@@ -1896,6 +1941,7 @@ declare const StormConfigSchema: z.ZodObject<{
1896
1941
  homepage: string;
1897
1942
  docs: string;
1898
1943
  licensing: string;
1944
+ contact: string;
1899
1945
  branch: string;
1900
1946
  owner: string;
1901
1947
  bot: {
@@ -1907,6 +1953,14 @@ declare const StormConfigSchema: z.ZodObject<{
1907
1953
  footer: string;
1908
1954
  header?: string | undefined;
1909
1955
  };
1956
+ account: {
1957
+ github: string;
1958
+ twitter: string;
1959
+ discord: string;
1960
+ telegram: string;
1961
+ slack: string;
1962
+ medium: string;
1963
+ };
1910
1964
  mode: "development" | "staging" | "production";
1911
1965
  workspaceRoot: string;
1912
1966
  externalPackagePatterns: string[];
@@ -2096,6 +2150,14 @@ declare const StormConfigSchema: z.ZodObject<{
2096
2150
  header?: string | undefined;
2097
2151
  footer?: string | undefined;
2098
2152
  };
2153
+ account: {
2154
+ github?: string | undefined;
2155
+ twitter?: string | undefined;
2156
+ discord?: string | undefined;
2157
+ telegram?: string | undefined;
2158
+ slack?: string | undefined;
2159
+ medium?: string | undefined;
2160
+ };
2099
2161
  directories: {
2100
2162
  cache?: string | undefined;
2101
2163
  data?: string | undefined;
@@ -2261,6 +2323,7 @@ declare const StormConfigSchema: z.ZodObject<{
2261
2323
  homepage?: string | undefined;
2262
2324
  docs?: string | undefined;
2263
2325
  licensing?: string | undefined;
2326
+ contact?: string | undefined;
2264
2327
  branch?: string | undefined;
2265
2328
  preid?: string | undefined;
2266
2329
  owner?: string | undefined;
@@ -2284,4 +2347,4 @@ declare const StormConfigSchema: z.ZodObject<{
2284
2347
  extensions?: Record<string, any> | undefined;
2285
2348
  }>;
2286
2349
 
2287
- export { ColorConfigMapSchema, ColorConfigSchema, DarkThemeColorConfigSchema, ExtendsSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, RegistryConfigSchema, RegistryUrlConfigSchema, SingleThemeColorConfigSchema, StormConfigSchema, WorkspaceBotConfigSchema, WorkspaceDirectoryConfigSchema, WorkspaceReleaseConfigSchema };
2350
+ export { ColorConfigMapSchema, ColorConfigSchema, DarkThemeColorConfigSchema, ExtendsSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, RegistryConfigSchema, RegistryUrlConfigSchema, SingleThemeColorConfigSchema, StormConfigSchema, WorkspaceAccountConfigSchema, WorkspaceBotConfigSchema, WorkspaceDirectoryConfigSchema, WorkspaceReleaseConfigSchema };
package/dist/schema.js CHANGED
@@ -9,11 +9,12 @@ import {
9
9
  RegistryUrlConfigSchema,
10
10
  SingleThemeColorConfigSchema,
11
11
  StormConfigSchema,
12
+ WorkspaceAccountConfigSchema,
12
13
  WorkspaceBotConfigSchema,
13
14
  WorkspaceDirectoryConfigSchema,
14
15
  WorkspaceReleaseConfigSchema
15
- } from "./chunk-ORVYZZUV.js";
16
- import "./chunk-KO5ZCYSI.js";
16
+ } from "./chunk-XA5LFJUS.js";
17
+ import "./chunk-2DXL7O2R.js";
17
18
  import "./chunk-SHUYVCID.js";
18
19
  export {
19
20
  ColorConfigMapSchema,
@@ -26,6 +27,7 @@ export {
26
27
  RegistryUrlConfigSchema,
27
28
  SingleThemeColorConfigSchema,
28
29
  StormConfigSchema,
30
+ WorkspaceAccountConfigSchema,
29
31
  WorkspaceBotConfigSchema,
30
32
  WorkspaceDirectoryConfigSchema,
31
33
  WorkspaceReleaseConfigSchema
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config",
3
- "version": "1.107.0",
3
+ "version": "1.108.0",
4
4
  "type": "module",
5
5
  "description": "Configuration management tools and schemas for Storm Software projects, providing a standardized approach to handle project settings and presets.",
6
6
  "repository": {
@@ -78,6 +78,12 @@
78
78
  "default": "https://license.stormsoftware.com",
79
79
  "description": "The base licensing site for the workspace"
80
80
  },
81
+ "contact": {
82
+ "type": "string",
83
+ "format": "uri",
84
+ "default": "https://stormsoftware.com/contact",
85
+ "description": "The base contact site for the workspace"
86
+ },
81
87
  "branch": {
82
88
  "type": "string",
83
89
  "default": "main",
@@ -124,13 +130,50 @@
124
130
  },
125
131
  "footer": {
126
132
  "type": "string",
127
- "default": "\nStorm Software is an open source software development organization and creator\nof Cyclone UI, Storm Stack and Acidic.\n\nOur mission is to make software development more accessible. Our ideal future is\none where anyone can create software without years of prior development\nexperience serving as a barrier to entry. We hope to achieve this via LLMs,\nGenerative AI, and intuitive, high-level data modeling/programming languages.\n\nJoin us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team,\nreceive release notifications, ask questions, and get involved.\n\nIf this sounds interesting, and you would like to help us in creating the next\ngeneration of development tools, please reach out on our [website](https://stormsoftware.com/contact) or join our\n[Slack](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA) channel!\n\n![Storm Software](https://public.storm-cdn.com/icon-fill.png){ width=\"200\" style=\"display: block; margin: 0 auto\" }\n![Visit us at stormsoftware.com](https://public.storm-cdn.com/visit-us-text.svg){ height=\"90\" style=\"display: block; margin: 0 auto\" }\n",
133
+ "default": "\n[Storm Software](https://stormsoftware.com) is an open source software development organization with the mission is to make software development more accessible. Our ideal future is one where anyone can create software without years of prior development experience serving as a barrier to entry. We hope to achieve this via LLMs, Generative AI, and intuitive, high-level data modeling/programming languages.\n\nJoin us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team, receive release notifications, ask questions, and get involved.\n\nIf this sounds interesting, and you would like to help us in creating the next generation of development tools, please reach out on our [website](https://stormsoftware.com/contact) or join our [Slack](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA) channel!\n",
128
134
  "description": "A footer message appended to the end of the workspace's release notes"
129
135
  }
130
136
  },
131
137
  "additionalProperties": false,
132
138
  "description": "The workspace's release config used during the release process"
133
139
  },
140
+ "account": {
141
+ "type": "object",
142
+ "properties": {
143
+ "twitter": {
144
+ "type": "string",
145
+ "default": "StormSoftwareHQ",
146
+ "description": "A Twitter/X account associated with the organization/project"
147
+ },
148
+ "discord": {
149
+ "type": "string",
150
+ "default": "https://discord.gg/MQ6YVzakM5",
151
+ "description": "A Discord account associated with the organization/project"
152
+ },
153
+ "telegram": {
154
+ "type": "string",
155
+ "default": "https://t.me/storm_software",
156
+ "description": "A Telegram account associated with the organization/project"
157
+ },
158
+ "slack": {
159
+ "type": "string",
160
+ "default": "https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA",
161
+ "description": "A Slack account associated with the organization/project"
162
+ },
163
+ "medium": {
164
+ "type": "string",
165
+ "default": "https://medium.com/storm-software",
166
+ "description": "A Medium account associated with the organization/project"
167
+ },
168
+ "github": {
169
+ "type": "string",
170
+ "default": "https://github.com/storm-software",
171
+ "description": "A GitHub account associated with the organization/project"
172
+ }
173
+ },
174
+ "additionalProperties": false,
175
+ "description": "The workspace's account config used to store various social media links"
176
+ },
134
177
  "mode": {
135
178
  "type": "string",
136
179
  "enum": ["development", "staging", "production"],
@@ -514,7 +557,7 @@
514
557
  "description": "Configuration of each used extension"
515
558
  }
516
559
  },
517
- "required": ["bot", "release", "directories", "colors"],
560
+ "required": ["bot", "release", "account", "directories", "colors"],
518
561
  "additionalProperties": false,
519
562
  "description": "Storm Workspace config values used during various dev-ops processes. This type is a combination of the StormPackageConfig and StormProject types. It represents the config of the entire monorepo."
520
563
  }
@@ -1,6 +1,13 @@
1
1
  export declare const STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
2
2
  export declare const STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
3
+ export declare const STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
3
4
  export declare const STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
4
5
  export declare const STORM_DEFAULT_LICENSE = "Apache-2.0";
5
6
  export declare const STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/logo-banner.png";
6
- export declare const STORM_DEFAULT_RELEASE_FOOTER = "\n[Storm Software](https://stormsoftware.com) is an open source software development organization with the mission is to make software development more accessible. Our ideal future is one where anyone can create software without years of prior development experience serving as a barrier to entry. We hope to achieve this via LLMs, Generative AI, and intuitive, high-level data modeling/programming languages.\n\nJoin us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team, receive release notifications, ask questions, and get involved.\n\nIf this sounds interesting, and you would like to help us in creating the next generation of development tools, please reach out on our [website](https://stormsoftware.com/contact) or join our [Slack](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA) channel!\n";
7
+ export declare const STORM_DEFAULT_ACCOUNT_TWITTER = "StormSoftwareHQ";
8
+ export declare const STORM_DEFAULT_ACCOUNT_DISCORD = "https://discord.gg/MQ6YVzakM5";
9
+ export declare const STORM_DEFAULT_ACCOUNT_TELEGRAM = "https://t.me/storm_software";
10
+ export declare const STORM_DEFAULT_ACCOUNT_SLACK = "https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA";
11
+ export declare const STORM_DEFAULT_ACCOUNT_MEDIUM = "https://medium.com/storm-software";
12
+ export declare const STORM_DEFAULT_ACCOUNT_GITHUB = "https://github.com/storm-software";
13
+ export declare const STORM_DEFAULT_RELEASE_FOOTER = "\nStorm Software is an open source software development organization with the mission is to make software development more accessible. Our ideal future is one where anyone can create software without years of prior development experience serving as a barrier to entry. We hope to achieve this via LLMs, Generative AI, and intuitive, high-level data modeling/programming languages.\n\nJoin us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team, receive release notifications, ask questions, and get involved.\n\nIf this sounds interesting, and you would like to help us in creating the next generation of development tools, please reach out on our [website](https://stormsoftware.com/contact) or join our [Slack](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA) channel!\n";
@@ -15,6 +15,14 @@ export declare const defineConfig: (input: StormConfigInput) => {
15
15
  header?: string | undefined;
16
16
  footer?: string | undefined;
17
17
  };
18
+ account: {
19
+ github?: string | undefined;
20
+ twitter?: string | undefined;
21
+ discord?: string | undefined;
22
+ telegram?: string | undefined;
23
+ slack?: string | undefined;
24
+ medium?: string | undefined;
25
+ };
18
26
  directories: {
19
27
  cache?: string | undefined;
20
28
  data?: string | undefined;
@@ -180,6 +188,7 @@ export declare const defineConfig: (input: StormConfigInput) => {
180
188
  homepage?: string | undefined;
181
189
  docs?: string | undefined;
182
190
  licensing?: string | undefined;
191
+ contact?: string | undefined;
183
192
  branch?: string | undefined;
184
193
  preid?: string | undefined;
185
194
  owner?: string | undefined;
package/src/schema.d.ts CHANGED
@@ -1060,6 +1060,28 @@ export declare const WorkspaceReleaseConfigSchema: z.ZodObject<{
1060
1060
  header?: string | undefined;
1061
1061
  footer?: string | undefined;
1062
1062
  }>;
1063
+ export declare const WorkspaceAccountConfigSchema: z.ZodObject<{
1064
+ twitter: z.ZodDefault<z.ZodString>;
1065
+ discord: z.ZodDefault<z.ZodString>;
1066
+ telegram: z.ZodDefault<z.ZodString>;
1067
+ slack: z.ZodDefault<z.ZodString>;
1068
+ medium: z.ZodDefault<z.ZodString>;
1069
+ github: z.ZodDefault<z.ZodString>;
1070
+ }, "strip", z.ZodTypeAny, {
1071
+ github: string;
1072
+ twitter: string;
1073
+ discord: string;
1074
+ telegram: string;
1075
+ slack: string;
1076
+ medium: string;
1077
+ }, {
1078
+ github?: string | undefined;
1079
+ twitter?: string | undefined;
1080
+ discord?: string | undefined;
1081
+ telegram?: string | undefined;
1082
+ slack?: string | undefined;
1083
+ medium?: string | undefined;
1084
+ }>;
1063
1085
  export declare const WorkspaceDirectoryConfigSchema: z.ZodObject<{
1064
1086
  cache: z.ZodOptional<z.ZodString>;
1065
1087
  data: z.ZodOptional<z.ZodString>;
@@ -1096,6 +1118,7 @@ export declare const StormConfigSchema: z.ZodObject<{
1096
1118
  homepage: z.ZodDefault<z.ZodString>;
1097
1119
  docs: z.ZodDefault<z.ZodString>;
1098
1120
  licensing: z.ZodDefault<z.ZodString>;
1121
+ contact: z.ZodDefault<z.ZodString>;
1099
1122
  branch: z.ZodDefault<z.ZodString>;
1100
1123
  preid: z.ZodOptional<z.ZodString>;
1101
1124
  owner: z.ZodDefault<z.ZodString>;
@@ -1122,6 +1145,28 @@ export declare const StormConfigSchema: z.ZodObject<{
1122
1145
  header?: string | undefined;
1123
1146
  footer?: string | undefined;
1124
1147
  }>;
1148
+ account: z.ZodObject<{
1149
+ twitter: z.ZodDefault<z.ZodString>;
1150
+ discord: z.ZodDefault<z.ZodString>;
1151
+ telegram: z.ZodDefault<z.ZodString>;
1152
+ slack: z.ZodDefault<z.ZodString>;
1153
+ medium: z.ZodDefault<z.ZodString>;
1154
+ github: z.ZodDefault<z.ZodString>;
1155
+ }, "strip", z.ZodTypeAny, {
1156
+ github: string;
1157
+ twitter: string;
1158
+ discord: string;
1159
+ telegram: string;
1160
+ slack: string;
1161
+ medium: string;
1162
+ }, {
1163
+ github?: string | undefined;
1164
+ twitter?: string | undefined;
1165
+ discord?: string | undefined;
1166
+ telegram?: string | undefined;
1167
+ slack?: string | undefined;
1168
+ medium?: string | undefined;
1169
+ }>;
1125
1170
  mode: z.ZodDefault<z.ZodEnum<["development", "staging", "production"]>>;
1126
1171
  workspaceRoot: z.ZodDefault<z.ZodString>;
1127
1172
  externalPackagePatterns: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
@@ -1895,6 +1940,7 @@ export declare const StormConfigSchema: z.ZodObject<{
1895
1940
  homepage: string;
1896
1941
  docs: string;
1897
1942
  licensing: string;
1943
+ contact: string;
1898
1944
  branch: string;
1899
1945
  owner: string;
1900
1946
  bot: {
@@ -1906,6 +1952,14 @@ export declare const StormConfigSchema: z.ZodObject<{
1906
1952
  footer: string;
1907
1953
  header?: string | undefined;
1908
1954
  };
1955
+ account: {
1956
+ github: string;
1957
+ twitter: string;
1958
+ discord: string;
1959
+ telegram: string;
1960
+ slack: string;
1961
+ medium: string;
1962
+ };
1909
1963
  mode: "development" | "staging" | "production";
1910
1964
  workspaceRoot: string;
1911
1965
  externalPackagePatterns: string[];
@@ -2095,6 +2149,14 @@ export declare const StormConfigSchema: z.ZodObject<{
2095
2149
  header?: string | undefined;
2096
2150
  footer?: string | undefined;
2097
2151
  };
2152
+ account: {
2153
+ github?: string | undefined;
2154
+ twitter?: string | undefined;
2155
+ discord?: string | undefined;
2156
+ telegram?: string | undefined;
2157
+ slack?: string | undefined;
2158
+ medium?: string | undefined;
2159
+ };
2098
2160
  directories: {
2099
2161
  cache?: string | undefined;
2100
2162
  data?: string | undefined;
@@ -2260,6 +2322,7 @@ export declare const StormConfigSchema: z.ZodObject<{
2260
2322
  homepage?: string | undefined;
2261
2323
  docs?: string | undefined;
2262
2324
  licensing?: string | undefined;
2325
+ contact?: string | undefined;
2263
2326
  branch?: string | undefined;
2264
2327
  preid?: string | undefined;
2265
2328
  owner?: string | undefined;
@@ -1,22 +0,0 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/constants.ts
2
- var STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
3
- var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
4
- var STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
5
- var STORM_DEFAULT_LICENSE = "Apache-2.0";
6
- var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/logo-banner.png";
7
- var STORM_DEFAULT_RELEASE_FOOTER = `
8
- [Storm Software](https://stormsoftware.com) is an open source software development organization with the mission is to make software development more accessible. Our ideal future is one where anyone can create software without years of prior development experience serving as a barrier to entry. We hope to achieve this via LLMs, Generative AI, and intuitive, high-level data modeling/programming languages.
9
-
10
- Join us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team, receive release notifications, ask questions, and get involved.
11
-
12
- If this sounds interesting, and you would like to help us in creating the next generation of development tools, please reach out on our [website](https://stormsoftware.com/contact) or join our [Slack](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA) channel!
13
- `;
14
-
15
-
16
-
17
-
18
-
19
-
20
-
21
-
22
- exports.STORM_DEFAULT_DOCS = STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_HOMEPAGE = STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSING = STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_LICENSE = STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_RELEASE_BANNER = STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = STORM_DEFAULT_RELEASE_FOOTER;
@@ -1,22 +0,0 @@
1
- // src/constants.ts
2
- var STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
3
- var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
4
- var STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
5
- var STORM_DEFAULT_LICENSE = "Apache-2.0";
6
- var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/logo-banner.png";
7
- var STORM_DEFAULT_RELEASE_FOOTER = `
8
- [Storm Software](https://stormsoftware.com) is an open source software development organization with the mission is to make software development more accessible. Our ideal future is one where anyone can create software without years of prior development experience serving as a barrier to entry. We hope to achieve this via LLMs, Generative AI, and intuitive, high-level data modeling/programming languages.
9
-
10
- Join us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team, receive release notifications, ask questions, and get involved.
11
-
12
- If this sounds interesting, and you would like to help us in creating the next generation of development tools, please reach out on our [website](https://stormsoftware.com/contact) or join our [Slack](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA) channel!
13
- `;
14
-
15
- export {
16
- STORM_DEFAULT_DOCS,
17
- STORM_DEFAULT_HOMEPAGE,
18
- STORM_DEFAULT_LICENSING,
19
- STORM_DEFAULT_LICENSE,
20
- STORM_DEFAULT_RELEASE_BANNER,
21
- STORM_DEFAULT_RELEASE_FOOTER
22
- };