@revealui/cli 0.3.2 → 0.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.
- package/dist/cli.js +447 -155
- package/dist/cli.js.map +1 -1
- package/dist/index.js +447 -155
- package/dist/index.js.map +1 -1
- package/package.json +16 -8
- package/templates/basic-blog/next.config.mjs +1 -3
- package/templates/basic-blog/package.json +7 -7
- package/templates/basic-blog/tsconfig.json +25 -2
- package/templates/e-commerce/next.config.mjs +1 -3
- package/templates/e-commerce/package.json +7 -7
- package/templates/e-commerce/tsconfig.json +25 -2
- package/templates/portfolio/next.config.mjs +1 -3
- package/templates/portfolio/package.json +7 -7
- package/templates/portfolio/tsconfig.json +25 -2
- package/templates/starter/next.config.mjs +1 -3
- package/templates/starter/package.json +7 -7
- package/templates/starter/tsconfig.json +25 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@revealui/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Create RevealUI projects with a single command",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -21,19 +21,27 @@
|
|
|
21
21
|
"revealui": "./bin/revealui.js"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"commander": "^
|
|
24
|
+
"commander": "^14.0.3",
|
|
25
25
|
"execa": "^9.0.0",
|
|
26
|
-
"inquirer": "^
|
|
26
|
+
"inquirer": "^13.3.2",
|
|
27
27
|
"jose": "^6.1.3",
|
|
28
|
-
"ora": "^
|
|
29
|
-
"@revealui/
|
|
30
|
-
"@revealui/
|
|
28
|
+
"ora": "^9.3.0",
|
|
29
|
+
"@revealui/setup": "0.3.1",
|
|
30
|
+
"@revealui/config": "0.3.0"
|
|
31
|
+
},
|
|
32
|
+
"peerDependencies": {
|
|
33
|
+
"@revealui/ai": "^0.2.0"
|
|
34
|
+
},
|
|
35
|
+
"peerDependenciesMeta": {
|
|
36
|
+
"@revealui/ai": {
|
|
37
|
+
"optional": true
|
|
38
|
+
}
|
|
31
39
|
},
|
|
32
40
|
"devDependencies": {
|
|
33
41
|
"@types/inquirer": "^9.0.7",
|
|
34
|
-
"@types/node": "^25.
|
|
42
|
+
"@types/node": "^25.5.0",
|
|
35
43
|
"tsup": "^8.0.0",
|
|
36
|
-
"typescript": "^
|
|
44
|
+
"typescript": "^6.0.2"
|
|
37
45
|
},
|
|
38
46
|
"engines": {
|
|
39
47
|
"node": ">=24.13.0"
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"db:seed": "tsx src/seed.ts"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@revealui/core": "
|
|
19
|
-
"@revealui/config": "
|
|
20
|
-
"@revealui/db": "
|
|
21
|
-
"@revealui/auth": "
|
|
22
|
-
"@revealui/contracts": "
|
|
18
|
+
"@revealui/core": "latest",
|
|
19
|
+
"@revealui/config": "latest",
|
|
20
|
+
"@revealui/db": "latest",
|
|
21
|
+
"@revealui/auth": "latest",
|
|
22
|
+
"@revealui/contracts": "latest",
|
|
23
23
|
"next": "^16.0.0",
|
|
24
24
|
"react": "^19.0.0",
|
|
25
25
|
"react-dom": "^19.0.0",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"zod": "^4.0.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@
|
|
30
|
+
"@biomejs/biome": "^2.0.0",
|
|
31
31
|
"@tailwindcss/postcss": "^4.1.0",
|
|
32
32
|
"tailwindcss": "^4.1.0",
|
|
33
|
-
"typescript": "^
|
|
33
|
+
"typescript": "^6.0.0",
|
|
34
34
|
"vitest": "^4.0.0"
|
|
35
35
|
}
|
|
36
36
|
}
|
|
@@ -1,11 +1,34 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
3
|
"compilerOptions": {
|
|
4
|
+
"strict": true,
|
|
5
|
+
"strictNullChecks": true,
|
|
6
|
+
"strictFunctionTypes": true,
|
|
7
|
+
"noImplicitReturns": true,
|
|
8
|
+
"noFallthroughCasesInSwitch": true,
|
|
9
|
+
"noUncheckedIndexedAccess": true,
|
|
10
|
+
"noUnusedLocals": true,
|
|
11
|
+
"noUnusedParameters": true,
|
|
12
|
+
"forceConsistentCasingInFileNames": true,
|
|
13
|
+
"isolatedModules": true,
|
|
14
|
+
"verbatimModuleSyntax": true,
|
|
15
|
+
"skipLibCheck": true,
|
|
16
|
+
"allowJs": true,
|
|
17
|
+
"jsx": "preserve",
|
|
18
|
+
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
19
|
+
"module": "ESNext",
|
|
20
|
+
"moduleResolution": "bundler",
|
|
21
|
+
"resolveJsonModule": true,
|
|
22
|
+
"resolvePackageJsonExports": true,
|
|
23
|
+
"target": "ES2022",
|
|
24
|
+
"noEmit": true,
|
|
25
|
+
"incremental": true,
|
|
26
|
+
"plugins": [{ "name": "next" }],
|
|
4
27
|
"baseUrl": ".",
|
|
5
28
|
"paths": {
|
|
6
29
|
"@/*": ["./src/*"]
|
|
7
30
|
}
|
|
8
31
|
},
|
|
9
|
-
"include": ["src", "next.config.mjs", "revealui.config.ts"],
|
|
32
|
+
"include": ["src", "next-env.d.ts", "next.config.mjs", "revealui.config.ts"],
|
|
10
33
|
"exclude": ["node_modules"]
|
|
11
34
|
}
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"db:seed": "tsx src/seed.ts"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@revealui/core": "
|
|
19
|
-
"@revealui/config": "
|
|
20
|
-
"@revealui/db": "
|
|
21
|
-
"@revealui/auth": "
|
|
22
|
-
"@revealui/contracts": "
|
|
18
|
+
"@revealui/core": "latest",
|
|
19
|
+
"@revealui/config": "latest",
|
|
20
|
+
"@revealui/db": "latest",
|
|
21
|
+
"@revealui/auth": "latest",
|
|
22
|
+
"@revealui/contracts": "latest",
|
|
23
23
|
"next": "^16.0.0",
|
|
24
24
|
"react": "^19.0.0",
|
|
25
25
|
"react-dom": "^19.0.0",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"zod": "^4.0.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@
|
|
30
|
+
"@biomejs/biome": "^2.0.0",
|
|
31
31
|
"@tailwindcss/postcss": "^4.1.0",
|
|
32
32
|
"tailwindcss": "^4.1.0",
|
|
33
|
-
"typescript": "^
|
|
33
|
+
"typescript": "^6.0.0",
|
|
34
34
|
"vitest": "^4.0.0"
|
|
35
35
|
}
|
|
36
36
|
}
|
|
@@ -1,11 +1,34 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
3
|
"compilerOptions": {
|
|
4
|
+
"strict": true,
|
|
5
|
+
"strictNullChecks": true,
|
|
6
|
+
"strictFunctionTypes": true,
|
|
7
|
+
"noImplicitReturns": true,
|
|
8
|
+
"noFallthroughCasesInSwitch": true,
|
|
9
|
+
"noUncheckedIndexedAccess": true,
|
|
10
|
+
"noUnusedLocals": true,
|
|
11
|
+
"noUnusedParameters": true,
|
|
12
|
+
"forceConsistentCasingInFileNames": true,
|
|
13
|
+
"isolatedModules": true,
|
|
14
|
+
"verbatimModuleSyntax": true,
|
|
15
|
+
"skipLibCheck": true,
|
|
16
|
+
"allowJs": true,
|
|
17
|
+
"jsx": "preserve",
|
|
18
|
+
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
19
|
+
"module": "ESNext",
|
|
20
|
+
"moduleResolution": "bundler",
|
|
21
|
+
"resolveJsonModule": true,
|
|
22
|
+
"resolvePackageJsonExports": true,
|
|
23
|
+
"target": "ES2022",
|
|
24
|
+
"noEmit": true,
|
|
25
|
+
"incremental": true,
|
|
26
|
+
"plugins": [{ "name": "next" }],
|
|
4
27
|
"baseUrl": ".",
|
|
5
28
|
"paths": {
|
|
6
29
|
"@/*": ["./src/*"]
|
|
7
30
|
}
|
|
8
31
|
},
|
|
9
|
-
"include": ["src", "next.config.mjs", "revealui.config.ts"],
|
|
32
|
+
"include": ["src", "next-env.d.ts", "next.config.mjs", "revealui.config.ts"],
|
|
10
33
|
"exclude": ["node_modules"]
|
|
11
34
|
}
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"db:seed": "tsx src/seed.ts"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@revealui/core": "
|
|
19
|
-
"@revealui/config": "
|
|
20
|
-
"@revealui/db": "
|
|
21
|
-
"@revealui/auth": "
|
|
22
|
-
"@revealui/contracts": "
|
|
18
|
+
"@revealui/core": "latest",
|
|
19
|
+
"@revealui/config": "latest",
|
|
20
|
+
"@revealui/db": "latest",
|
|
21
|
+
"@revealui/auth": "latest",
|
|
22
|
+
"@revealui/contracts": "latest",
|
|
23
23
|
"next": "^16.0.0",
|
|
24
24
|
"react": "^19.0.0",
|
|
25
25
|
"react-dom": "^19.0.0",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"zod": "^4.0.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@
|
|
30
|
+
"@biomejs/biome": "^2.0.0",
|
|
31
31
|
"@tailwindcss/postcss": "^4.1.0",
|
|
32
32
|
"tailwindcss": "^4.1.0",
|
|
33
|
-
"typescript": "^
|
|
33
|
+
"typescript": "^6.0.0",
|
|
34
34
|
"vitest": "^4.0.0"
|
|
35
35
|
}
|
|
36
36
|
}
|
|
@@ -1,11 +1,34 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
3
|
"compilerOptions": {
|
|
4
|
+
"strict": true,
|
|
5
|
+
"strictNullChecks": true,
|
|
6
|
+
"strictFunctionTypes": true,
|
|
7
|
+
"noImplicitReturns": true,
|
|
8
|
+
"noFallthroughCasesInSwitch": true,
|
|
9
|
+
"noUncheckedIndexedAccess": true,
|
|
10
|
+
"noUnusedLocals": true,
|
|
11
|
+
"noUnusedParameters": true,
|
|
12
|
+
"forceConsistentCasingInFileNames": true,
|
|
13
|
+
"isolatedModules": true,
|
|
14
|
+
"verbatimModuleSyntax": true,
|
|
15
|
+
"skipLibCheck": true,
|
|
16
|
+
"allowJs": true,
|
|
17
|
+
"jsx": "preserve",
|
|
18
|
+
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
19
|
+
"module": "ESNext",
|
|
20
|
+
"moduleResolution": "bundler",
|
|
21
|
+
"resolveJsonModule": true,
|
|
22
|
+
"resolvePackageJsonExports": true,
|
|
23
|
+
"target": "ES2022",
|
|
24
|
+
"noEmit": true,
|
|
25
|
+
"incremental": true,
|
|
26
|
+
"plugins": [{ "name": "next" }],
|
|
4
27
|
"baseUrl": ".",
|
|
5
28
|
"paths": {
|
|
6
29
|
"@/*": ["./src/*"]
|
|
7
30
|
}
|
|
8
31
|
},
|
|
9
|
-
"include": ["src", "next.config.mjs", "revealui.config.ts"],
|
|
32
|
+
"include": ["src", "next-env.d.ts", "next.config.mjs", "revealui.config.ts"],
|
|
10
33
|
"exclude": ["node_modules"]
|
|
11
34
|
}
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"db:seed": "tsx src/seed.ts"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@revealui/core": "
|
|
19
|
-
"@revealui/config": "
|
|
20
|
-
"@revealui/db": "
|
|
21
|
-
"@revealui/auth": "
|
|
22
|
-
"@revealui/contracts": "
|
|
18
|
+
"@revealui/core": "latest",
|
|
19
|
+
"@revealui/config": "latest",
|
|
20
|
+
"@revealui/db": "latest",
|
|
21
|
+
"@revealui/auth": "latest",
|
|
22
|
+
"@revealui/contracts": "latest",
|
|
23
23
|
"next": "^16.0.0",
|
|
24
24
|
"react": "^19.0.0",
|
|
25
25
|
"react-dom": "^19.0.0",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"zod": "^4.0.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@
|
|
30
|
+
"@biomejs/biome": "^2.0.0",
|
|
31
31
|
"@tailwindcss/postcss": "^4.1.0",
|
|
32
32
|
"tailwindcss": "^4.1.0",
|
|
33
|
-
"typescript": "^
|
|
33
|
+
"typescript": "^6.0.0",
|
|
34
34
|
"vitest": "^4.0.0"
|
|
35
35
|
}
|
|
36
36
|
}
|
|
@@ -1,11 +1,34 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
3
|
"compilerOptions": {
|
|
4
|
+
"strict": true,
|
|
5
|
+
"strictNullChecks": true,
|
|
6
|
+
"strictFunctionTypes": true,
|
|
7
|
+
"noImplicitReturns": true,
|
|
8
|
+
"noFallthroughCasesInSwitch": true,
|
|
9
|
+
"noUncheckedIndexedAccess": true,
|
|
10
|
+
"noUnusedLocals": true,
|
|
11
|
+
"noUnusedParameters": true,
|
|
12
|
+
"forceConsistentCasingInFileNames": true,
|
|
13
|
+
"isolatedModules": true,
|
|
14
|
+
"verbatimModuleSyntax": true,
|
|
15
|
+
"skipLibCheck": true,
|
|
16
|
+
"allowJs": true,
|
|
17
|
+
"jsx": "preserve",
|
|
18
|
+
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
19
|
+
"module": "ESNext",
|
|
20
|
+
"moduleResolution": "bundler",
|
|
21
|
+
"resolveJsonModule": true,
|
|
22
|
+
"resolvePackageJsonExports": true,
|
|
23
|
+
"target": "ES2022",
|
|
24
|
+
"noEmit": true,
|
|
25
|
+
"incremental": true,
|
|
26
|
+
"plugins": [{ "name": "next" }],
|
|
4
27
|
"baseUrl": ".",
|
|
5
28
|
"paths": {
|
|
6
29
|
"@/*": ["./src/*"]
|
|
7
30
|
}
|
|
8
31
|
},
|
|
9
|
-
"include": ["src", "next.config.mjs", "revealui.config.ts"],
|
|
32
|
+
"include": ["src", "next-env.d.ts", "next.config.mjs", "revealui.config.ts"],
|
|
10
33
|
"exclude": ["node_modules"]
|
|
11
34
|
}
|