@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revealui/cli",
3
- "version": "0.3.2",
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": "^13.0.0",
24
+ "commander": "^14.0.3",
25
25
  "execa": "^9.0.0",
26
- "inquirer": "^12.0.0",
26
+ "inquirer": "^13.3.2",
27
27
  "jose": "^6.1.3",
28
- "ora": "^8.0.1",
29
- "@revealui/config": "0.3.0",
30
- "@revealui/setup": "0.3.0"
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.3.0",
42
+ "@types/node": "^25.5.0",
35
43
  "tsup": "^8.0.0",
36
- "typescript": "^5.9.3"
44
+ "typescript": "^6.0.2"
37
45
  },
38
46
  "engines": {
39
47
  "node": ">=24.13.0"
@@ -1,8 +1,6 @@
1
1
  /** @type {import('next').NextConfig} */
2
2
  const nextConfig = {
3
- experimental: {
4
- reactCompiler: true,
5
- },
3
+ reactCompiler: true,
6
4
  // Required for RevealUI CMS admin panel
7
5
  transpilePackages: ['@revealui/core', '@revealui/presentation'],
8
6
  }
@@ -15,11 +15,11 @@
15
15
  "db:seed": "tsx src/seed.ts"
16
16
  },
17
17
  "dependencies": {
18
- "@revealui/core": "^0.2.0",
19
- "@revealui/config": "^0.2.0",
20
- "@revealui/db": "^0.2.0",
21
- "@revealui/auth": "^0.2.0",
22
- "@revealui/contracts": "^1.1.0",
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
- "@revealui/dev": "^0.0.1",
30
+ "@biomejs/biome": "^2.0.0",
31
31
  "@tailwindcss/postcss": "^4.1.0",
32
32
  "tailwindcss": "^4.1.0",
33
- "typescript": "^5.9.0",
33
+ "typescript": "^6.0.0",
34
34
  "vitest": "^4.0.0"
35
35
  }
36
36
  }
@@ -1,11 +1,34 @@
1
1
  {
2
- "extends": "@revealui/dev/ts/nextjs",
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
  }
@@ -1,8 +1,6 @@
1
1
  /** @type {import('next').NextConfig} */
2
2
  const nextConfig = {
3
- experimental: {
4
- reactCompiler: true,
5
- },
3
+ reactCompiler: true,
6
4
  // Required for RevealUI CMS admin panel
7
5
  transpilePackages: ['@revealui/core', '@revealui/presentation'],
8
6
  }
@@ -15,11 +15,11 @@
15
15
  "db:seed": "tsx src/seed.ts"
16
16
  },
17
17
  "dependencies": {
18
- "@revealui/core": "^0.2.0",
19
- "@revealui/config": "^0.2.0",
20
- "@revealui/db": "^0.2.0",
21
- "@revealui/auth": "^0.2.0",
22
- "@revealui/contracts": "^1.1.0",
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
- "@revealui/dev": "^0.0.1",
30
+ "@biomejs/biome": "^2.0.0",
31
31
  "@tailwindcss/postcss": "^4.1.0",
32
32
  "tailwindcss": "^4.1.0",
33
- "typescript": "^5.9.0",
33
+ "typescript": "^6.0.0",
34
34
  "vitest": "^4.0.0"
35
35
  }
36
36
  }
@@ -1,11 +1,34 @@
1
1
  {
2
- "extends": "@revealui/dev/ts/nextjs",
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
  }
@@ -1,8 +1,6 @@
1
1
  /** @type {import('next').NextConfig} */
2
2
  const nextConfig = {
3
- experimental: {
4
- reactCompiler: true,
5
- },
3
+ reactCompiler: true,
6
4
  // Required for RevealUI CMS admin panel
7
5
  transpilePackages: ['@revealui/core', '@revealui/presentation'],
8
6
  }
@@ -15,11 +15,11 @@
15
15
  "db:seed": "tsx src/seed.ts"
16
16
  },
17
17
  "dependencies": {
18
- "@revealui/core": "^0.2.0",
19
- "@revealui/config": "^0.2.0",
20
- "@revealui/db": "^0.2.0",
21
- "@revealui/auth": "^0.2.0",
22
- "@revealui/contracts": "^1.1.0",
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
- "@revealui/dev": "^0.0.1",
30
+ "@biomejs/biome": "^2.0.0",
31
31
  "@tailwindcss/postcss": "^4.1.0",
32
32
  "tailwindcss": "^4.1.0",
33
- "typescript": "^5.9.0",
33
+ "typescript": "^6.0.0",
34
34
  "vitest": "^4.0.0"
35
35
  }
36
36
  }
@@ -1,11 +1,34 @@
1
1
  {
2
- "extends": "@revealui/dev/ts/nextjs",
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
  }
@@ -1,8 +1,6 @@
1
1
  /** @type {import('next').NextConfig} */
2
2
  const nextConfig = {
3
- experimental: {
4
- reactCompiler: true,
5
- },
3
+ reactCompiler: true,
6
4
  // Required for RevealUI CMS admin panel
7
5
  transpilePackages: ['@revealui/core', '@revealui/presentation'],
8
6
  }
@@ -15,11 +15,11 @@
15
15
  "db:seed": "tsx src/seed.ts"
16
16
  },
17
17
  "dependencies": {
18
- "@revealui/core": "^0.2.0",
19
- "@revealui/config": "^0.2.0",
20
- "@revealui/db": "^0.2.0",
21
- "@revealui/auth": "^0.2.0",
22
- "@revealui/contracts": "^1.1.0",
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
- "@revealui/dev": "^0.0.1",
30
+ "@biomejs/biome": "^2.0.0",
31
31
  "@tailwindcss/postcss": "^4.1.0",
32
32
  "tailwindcss": "^4.1.0",
33
- "typescript": "^5.9.0",
33
+ "typescript": "^6.0.0",
34
34
  "vitest": "^4.0.0"
35
35
  }
36
36
  }
@@ -1,11 +1,34 @@
1
1
  {
2
- "extends": "@revealui/dev/ts/nextjs",
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
  }