tanstack 1.0.0 → 1.0.1
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/bin/create-tanstack-app.js +40 -0
- package/package.json +24 -4
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
console.log(`
|
|
4
|
+
╔══════════════════════════════════════════════════════╗
|
|
5
|
+
║ ║
|
|
6
|
+
║ 🚀 TanStack App Creator ║
|
|
7
|
+
║ ║
|
|
8
|
+
║ Welcome to create-tanstack-app! ║
|
|
9
|
+
║ ║
|
|
10
|
+
║ A powerful CLI tool for scaffolding TanStack apps ║
|
|
11
|
+
║ ║
|
|
12
|
+
╚══════════════════════════════════════════════════════╝
|
|
13
|
+
|
|
14
|
+
🎉 Thank you for using create-tanstack-app!
|
|
15
|
+
|
|
16
|
+
📱 Follow the creator:
|
|
17
|
+
🐦 Twitter/X: https://x.com/sh20raj
|
|
18
|
+
🐙 GitHub: https://github.com/sh20raj
|
|
19
|
+
|
|
20
|
+
💡 This tool helps you bootstrap modern TanStack applications
|
|
21
|
+
with best practices and optimal configurations.
|
|
22
|
+
|
|
23
|
+
🔧 Usage:
|
|
24
|
+
npx create-tanstack-app my-app
|
|
25
|
+
|
|
26
|
+
📚 Learn more about TanStack:
|
|
27
|
+
- TanStack Query: https://tanstack.com/query
|
|
28
|
+
- TanStack Router: https://tanstack.com/router
|
|
29
|
+
- TanStack Table: https://tanstack.com/table
|
|
30
|
+
- TanStack Virtual: https://tanstack.com/virtual
|
|
31
|
+
|
|
32
|
+
🌟 Star the repo if you find it useful!
|
|
33
|
+
https://github.com/sh20raj/tanstack
|
|
34
|
+
|
|
35
|
+
Happy coding! 🎯
|
|
36
|
+
`);
|
|
37
|
+
|
|
38
|
+
// Future implementation would include actual app scaffolding logic here
|
|
39
|
+
console.log('⚠️ App scaffolding functionality coming soon!');
|
|
40
|
+
console.log('📧 Stay tuned for updates or contribute to the project.');
|
package/package.json
CHANGED
|
@@ -1,11 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tanstack",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "A CLI tool to create TanStack applications",
|
|
4
5
|
"main": "index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"create-tanstack-app": "./bin/create-tanstack-app.js"
|
|
8
|
+
},
|
|
5
9
|
"scripts": {
|
|
6
10
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
7
11
|
},
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
12
|
+
"keywords": [
|
|
13
|
+
"tanstack",
|
|
14
|
+
"cli",
|
|
15
|
+
"create-app",
|
|
16
|
+
"scaffolding"
|
|
17
|
+
],
|
|
18
|
+
"author": "sh20raj (x.com/sh20raj | github.com/sh20raj)",
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"engines": {
|
|
21
|
+
"node": ">=14.0.0"
|
|
22
|
+
},
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://github.com/sh20raj/tanstack.git"
|
|
26
|
+
},
|
|
27
|
+
"homepage": "https://github.com/sh20raj/tanstack",
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "https://github.com/sh20raj/tanstack/issues"
|
|
30
|
+
}
|
|
11
31
|
}
|