@tuwaio/create-cosmos-playground 0.0.6 → 0.0.8

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.8](https://github.com/TuwaIO/cosmos-playground/compare/create-cosmos-playground-v0.0.7...create-cosmos-playground-v0.0.8) (2025-10-26)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * readme's ([106b69c](https://github.com/TuwaIO/cosmos-playground/commit/106b69cb2f61329c8d23536ab685e5b77a3bb124))
9
+
10
+ ## [0.0.7](https://github.com/TuwaIO/cosmos-playground/compare/create-cosmos-playground-v0.0.6...create-cosmos-playground-v0.0.7) (2025-10-26)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * update examples ([b3f8083](https://github.com/TuwaIO/cosmos-playground/commit/b3f8083b4d3b78b89fe4261e377475423e2988f7))
16
+
3
17
  ## [0.0.6](https://github.com/TuwaIO/cosmos-playground/compare/create-cosmos-playground-v0.0.5...create-cosmos-playground-v0.0.6) (2025-10-21)
4
18
 
5
19
 
package/README.md CHANGED
@@ -68,8 +68,6 @@ If you find this library useful, please consider supporting its development. Eve
68
68
 
69
69
  ---
70
70
 
71
- Built with ❤️ from **TUWA**.
72
-
73
71
  ## License
74
72
 
75
73
  [Apache License 2.0](./LICENSE)
package/dist/index.js CHANGED
@@ -12,12 +12,12 @@ const REPO_URL = 'TuwaIO/cosmos-playground/examples';
12
12
  async function main() {
13
13
  console.log('✨ Creating a new Cosmos Playground project...');
14
14
  const availableTemplates = [
15
- 'nextjs-all',
15
+ 'nextjs-tuwa',
16
16
  'nextjs-connectkit',
17
- 'nextjs-dynamic',
18
17
  'nextjs-rainbowkit',
19
18
  'nextjs-solana',
20
- 'vite-rainbowkit',
19
+ 'nextjs-evm',
20
+ 'vite-tuwa',
21
21
  ];
22
22
  const templateResponse = await (0, prompts_1.default)({
23
23
  type: 'select',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tuwaio/create-cosmos-playground",
3
- "version": "0.0.6",
3
+ "version": "0.0.8",
4
4
  "description": "A CLI tool to scaffold new Cosmos Playground examples.",
5
5
  "keywords": [
6
6
  "cli",
@@ -10,6 +10,14 @@
10
10
  "playground",
11
11
  "web3 transactions tracking"
12
12
  ],
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/TuwaIO/cosmos-playground.git"
16
+ },
17
+ "homepage": "https://github.com/TuwaIO/cosmos-playground",
18
+ "bugs": {
19
+ "url": "https://github.com/TuwaIO/cosmos-playground/issues"
20
+ },
13
21
  "author": "Oleksandr Tkach",
14
22
  "license": "Apache-2.0",
15
23
  "bin": {
package/src/index.ts CHANGED
@@ -11,12 +11,12 @@ async function main() {
11
11
  console.log('✨ Creating a new Cosmos Playground project...');
12
12
 
13
13
  const availableTemplates = [
14
- 'nextjs-all',
14
+ 'nextjs-tuwa',
15
15
  'nextjs-connectkit',
16
- 'nextjs-dynamic',
17
16
  'nextjs-rainbowkit',
18
17
  'nextjs-solana',
19
- 'vite-rainbowkit',
18
+ 'nextjs-evm',
19
+ 'vite-tuwa',
20
20
  ];
21
21
 
22
22
  const templateResponse = await prompts({