@tuwaio/create-cosmos-playground 0.0.17 → 0.0.21

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,33 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.21](https://github.com/TuwaIO/cosmos-playground/compare/create-cosmos-playground-v0.0.20...create-cosmos-playground-v0.0.21) (2026-07-25)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * integrated TUWA sdk and updated packages ([e6610cb](https://github.com/TuwaIO/cosmos-playground/commit/e6610cbd0ddfbe43465ee267742e6a3484921893))
9
+
10
+ ## [0.0.20](https://github.com/TuwaIO/cosmos-playground/compare/create-cosmos-playground-v0.0.19...create-cosmos-playground-v0.0.20) (2026-05-20)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * added tuwa quasar playground ([4e9f257](https://github.com/TuwaIO/cosmos-playground/commit/4e9f25752c54d86819ef1890c4103aa741936b6d))
16
+
17
+ ## [0.0.19](https://github.com/TuwaIO/cosmos-playground/compare/create-cosmos-playground-v0.0.18...create-cosmos-playground-v0.0.19) (2026-05-14)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * updated packages ([36d24fd](https://github.com/TuwaIO/cosmos-playground/commit/36d24fdee4d13ec51ad66fcff40fe3906997f031))
23
+
24
+ ## [0.0.18](https://github.com/TuwaIO/cosmos-playground/compare/create-cosmos-playground-v0.0.17...create-cosmos-playground-v0.0.18) (2026-05-09)
25
+
26
+
27
+ ### Bug Fixes
28
+
29
+ * updated packages ([ba19643](https://github.com/TuwaIO/cosmos-playground/commit/ba19643be75581a9e24e2c066226e5e85d7102b3))
30
+
3
31
  ## [0.0.17](https://github.com/TuwaIO/cosmos-playground/compare/create-cosmos-playground-v0.0.16...create-cosmos-playground-v0.0.17) (2026-04-27)
4
32
 
5
33
 
package/dist/index.js CHANGED
@@ -12,11 +12,13 @@ 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-tuwa-quasar',
15
16
  'custom-style',
16
17
  'nextjs-tuwa',
17
18
  'nextjs-solana',
18
19
  'nextjs-evm',
19
20
  'vite-tuwa',
21
+ 'nextjs-tuwa-not-sdk',
20
22
  ];
21
23
  const templateResponse = await (0, prompts_1.default)({
22
24
  type: 'select',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tuwaio/create-cosmos-playground",
3
- "version": "0.0.17",
3
+ "version": "0.0.21",
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": "^25.6.0",
29
+ "@types/node": "^26.1.1",
30
30
  "typescript": "^6.0.3"
31
31
  },
32
32
  "dependencies": {
33
33
  "prompts": "^2.4.2",
34
- "fs-extra": "^11.3.4",
35
- "degit": "^2.8.4",
36
- "execa": "^9.6.1"
34
+ "fs-extra": "^11.4.0",
35
+ "degit": "^3.6.3",
36
+ "execa": "^10.0.0"
37
37
  },
38
38
  "publishConfig": {
39
39
  "access": "public"
package/src/index.ts CHANGED
@@ -11,11 +11,13 @@ async function main() {
11
11
  console.log('✨ Creating a new Cosmos Playground project...');
12
12
 
13
13
  const availableTemplates = [
14
+ 'nextjs-tuwa-quasar',
14
15
  'custom-style',
15
16
  'nextjs-tuwa',
16
17
  'nextjs-solana',
17
18
  'nextjs-evm',
18
19
  'vite-tuwa',
20
+ 'nextjs-tuwa-not-sdk',
19
21
  ];
20
22
 
21
23
  const templateResponse = await prompts({