@tuwaio/create-cosmos-playground 0.0.5 → 0.0.7

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.7](https://github.com/TuwaIO/cosmos-playground/compare/create-cosmos-playground-v0.0.6...create-cosmos-playground-v0.0.7) (2025-10-26)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * update examples ([b3f8083](https://github.com/TuwaIO/cosmos-playground/commit/b3f8083b4d3b78b89fe4261e377475423e2988f7))
9
+
10
+ ## [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)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * nova connect initial ([#6](https://github.com/TuwaIO/cosmos-playground/issues/6)) ([cf86b90](https://github.com/TuwaIO/cosmos-playground/commit/cf86b908f23f6436af391945e1aad4c8500eb7b1))
16
+
3
17
  ## [0.0.5](https://github.com/TuwaIO/cosmos-playground/compare/create-cosmos-playground-v0.0.4...create-cosmos-playground-v0.0.5) (2025-09-19)
4
18
 
5
19
 
package/dist/index.js CHANGED
@@ -12,14 +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
- 'nextjs-reown',
19
17
  'nextjs-rainbowkit',
20
18
  'nextjs-solana',
21
- 'nextjs-web3auth',
22
- 'vite-rainbowkit',
19
+ 'nextjs-evm',
20
+ 'vite-tuwa',
23
21
  ];
24
22
  const templateResponse = await (0, prompts_1.default)({
25
23
  type: 'select',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tuwaio/create-cosmos-playground",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
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,14 +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
- 'nextjs-reown',
18
16
  'nextjs-rainbowkit',
19
17
  'nextjs-solana',
20
- 'nextjs-web3auth',
21
- 'vite-rainbowkit',
18
+ 'nextjs-evm',
19
+ 'vite-tuwa',
22
20
  ];
23
21
 
24
22
  const templateResponse = await prompts({