@tuwaio/create-cosmos-playground 0.0.8 → 0.0.10

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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.10](https://github.com/TuwaIO/cosmos-playground/compare/create-cosmos-playground-v0.0.9...create-cosmos-playground-v0.0.10) (2025-12-15)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * update packages ([cdd2869](https://github.com/TuwaIO/cosmos-playground/commit/cdd2869d793db68b7412ad216abd15337fc255c7))
9
+
10
+ ## [0.0.9](https://github.com/TuwaIO/cosmos-playground/compare/create-cosmos-playground-v0.0.8...create-cosmos-playground-v0.0.9) (2025-12-02)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * update packages and logic; remove connectkit and rainbowkit ([ef37dc4](https://github.com/TuwaIO/cosmos-playground/commit/ef37dc44a873d6a03306981c86d190574a860198))
16
+
3
17
  ## [0.0.8](https://github.com/TuwaIO/cosmos-playground/compare/create-cosmos-playground-v0.0.7...create-cosmos-playground-v0.0.8) (2025-10-26)
4
18
 
5
19
 
package/dist/index.js CHANGED
@@ -13,8 +13,6 @@ async function main() {
13
13
  console.log('✨ Creating a new Cosmos Playground project...');
14
14
  const availableTemplates = [
15
15
  'nextjs-tuwa',
16
- 'nextjs-connectkit',
17
- 'nextjs-rainbowkit',
18
16
  'nextjs-solana',
19
17
  'nextjs-evm',
20
18
  'vite-tuwa',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tuwaio/create-cosmos-playground",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "description": "A CLI tool to scaffold new Cosmos Playground examples.",
5
5
  "keywords": [
6
6
  "cli",
@@ -26,14 +26,14 @@
26
26
  "devDependencies": {
27
27
  "@types/fs-extra": "^11.0.4",
28
28
  "@types/prompts": "^2.4.9",
29
- "@types/node": "^20.14.12",
30
- "typescript": "~5.9.2"
29
+ "@types/node": "^25.0.2",
30
+ "typescript": "^5.9.3"
31
31
  },
32
32
  "dependencies": {
33
33
  "prompts": "^2.4.2",
34
- "fs-extra": "^11.2.0",
34
+ "fs-extra": "^11.3.2",
35
35
  "degit": "^2.8.4",
36
- "execa": "^9.3.0"
36
+ "execa": "^9.6.1"
37
37
  },
38
38
  "publishConfig": {
39
39
  "access": "public"
package/src/index.ts CHANGED
@@ -12,8 +12,6 @@ async function main() {
12
12
 
13
13
  const availableTemplates = [
14
14
  'nextjs-tuwa',
15
- 'nextjs-connectkit',
16
- 'nextjs-rainbowkit',
17
15
  'nextjs-solana',
18
16
  'nextjs-evm',
19
17
  'vite-tuwa',