-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathreliverse.ts
168 lines (155 loc) · 4.45 KB
/
reliverse.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
import { defineConfig } from "./src/libs/cfg/cfg-main.js";
export default defineConfig({
// RELIVERSE CONFIG (https://docs.reliverse.org/cli)
// This config file is generated by @reliverse/cli
// Restart the CLI to apply your config changes
$schema: "./schema.json",
// General project information
projectName: "@reliverse/cli",
projectAuthor: "reliverse",
projectDescription:
"@reliverse/cli is your all-in-one companion for building and improving web projects — whether you're kicking off something new or upgrading an existing app. It's like having a little AI-powered toolbox in your terminal, ready to help with coding, refactoring, image gen, and more.",
version: "1.6.5",
projectLicense: "MIT",
projectState: "creating",
projectRepository: "https://github.com/reliverse/cli",
projectDomain: "https://docs.reliverse.org/cli",
projectCategory: "unknown",
projectSubcategory: "unknown",
projectTemplate: "unknown",
projectTemplateDate: "unknown",
projectArchitecture: "unknown",
repoPrivacy: "unknown",
projectGitService: "github",
projectDeployService: "vercel",
repoBranch: "main",
// Primary tech stack/framework
projectFramework: "unknown",
projectPackageManager: "bun",
projectRuntime: "bun",
preferredLibraries: {
stateManagement: "unknown",
formManagement: "unknown",
styling: "unknown",
uiComponents: "unknown",
testing: "unknown",
authentication: "unknown",
databaseLibrary: "unknown",
databaseProvider: "unknown",
api: "unknown",
linting: "unknown",
formatting: "unknown",
payment: "unknown",
analytics: "unknown",
monitoring: "unknown",
logging: "unknown",
forms: "unknown",
notifications: "unknown",
search: "unknown",
uploads: "unknown",
validation: "unknown",
documentation: "unknown",
icons: "unknown",
mail: "unknown",
cache: "unknown",
storage: "unknown",
cdn: "unknown",
cms: "unknown",
i18n: "unknown",
seo: "unknown",
motion: "unknown",
charts: "unknown",
dates: "unknown",
markdown: "unknown",
security: "unknown",
routing: "unknown",
},
monorepo: {
type: "none",
packages: [],
sharedPackages: [],
},
// List dependencies to exclude from checks
ignoreDependencies: [],
// Provide custom additional project details
// always sent to Reliverse AI Chat & Agents
customRules: {},
// Project features
features: {
i18n: false,
analytics: false,
themeMode: "dark-light",
authentication: false,
api: false,
database: true,
testing: true,
docker: false,
ci: false,
commands: [
"db",
"pub",
"knip",
"latest",
"check",
"agg",
"dev:add",
"dev:ai",
"dev:clone",
"dev:cmod",
],
webview: [],
language: ["typescript"],
themes: ["default", "eslint", "biome", "uploadthing", "zod", "typebox"],
},
// Code style preferences
codeStyle: {
dontRemoveComments: true,
shouldAddComments: true,
typeOrInterface: "type",
importOrRequire: "import",
quoteMark: "double",
semicolons: true,
lineWidth: 80,
indentStyle: "space",
indentSize: 2,
importSymbol: "~",
trailingComma: "all",
bracketSpacing: true,
arrowParens: "always",
tabWidth: 2,
jsToTs: false,
cjsToEsm: false,
modernize: {
replaceFs: false,
replacePath: false,
replaceHttp: false,
replaceProcess: false,
replaceConsole: false,
replaceEvents: false,
},
},
// Settings for cloning an existing repo
multipleRepoCloneMode: false,
customUserFocusedRepos: [],
customDevsFocusedRepos: [],
hideRepoSuggestions: false,
customReposOnNewProject: false,
// Set to false to disable opening the browser during env composing
envComposerOpenBrowser: true,
// Enable auto-answering for prompts to skip manual confirmations.
// Make sure you have unknown values configured above.
skipPromptsUseAutoBehavior: false,
// Prompt behavior for deployment
// Options: prompt | autoYes | autoNo
deployBehavior: "prompt",
depsBehavior: "prompt",
gitBehavior: "prompt",
i18nBehavior: "prompt",
scriptsBehavior: "prompt",
// Behavior for existing GitHub repos during project creation
// Options: prompt | autoYes | autoYesSkipCommit | autoNo
existingRepoBehavior: "prompt",
// Behavior for Reliverse AI Chat & Agents
// Options: promptOnce | promptEachFile | autoYes
relinterConfirm: "promptOnce",
});