@tanstack/create-start 1.92.0

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.
Files changed (60) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +0 -0
  3. package/dist/cli-entry.d.ts +1 -0
  4. package/dist/cli-entry.mjs +5 -0
  5. package/dist/cli.d.ts +1 -0
  6. package/dist/cli.mjs +92 -0
  7. package/dist/constants.d.ts +3 -0
  8. package/dist/constants.mjs +7 -0
  9. package/dist/directory.d.ts +3 -0
  10. package/dist/directory.mjs +62 -0
  11. package/dist/index.d.ts +2446 -0
  12. package/dist/index.mjs +15 -0
  13. package/dist/logo.d.ts +1 -0
  14. package/dist/logo.mjs +28 -0
  15. package/dist/module.d.ts +67 -0
  16. package/dist/module.mjs +168 -0
  17. package/dist/modules/core/index.d.ts +1446 -0
  18. package/dist/modules/core/index.mjs +218 -0
  19. package/dist/modules/core/template/app/client.tsx +10 -0
  20. package/dist/modules/core/template/app/router.tsx +18 -0
  21. package/dist/modules/core/template/app/routes/__root.tsx +50 -0
  22. package/dist/modules/core/template/app/ssr.tsx +15 -0
  23. package/dist/modules/core/template/app.config.ts +5 -0
  24. package/dist/modules/core/template/tsconfig.json +10 -0
  25. package/dist/modules/git.d.ts +231 -0
  26. package/dist/modules/git.mjs +114 -0
  27. package/dist/modules/ide.d.ts +92 -0
  28. package/dist/modules/ide.mjs +70 -0
  29. package/dist/modules/packageJson.d.ts +541 -0
  30. package/dist/modules/packageJson.mjs +153 -0
  31. package/dist/modules/packageManager.d.ts +139 -0
  32. package/dist/modules/packageManager.mjs +89 -0
  33. package/dist/modules/vscode/index.d.ts +33 -0
  34. package/dist/modules/vscode/index.mjs +35 -0
  35. package/dist/modules/vscode/template/_dot_vscode/settings.json +11 -0
  36. package/dist/templates/barebones/index.d.ts +1507 -0
  37. package/dist/templates/barebones/index.mjs +60 -0
  38. package/dist/templates/barebones/template/app/routes/index.tsx +11 -0
  39. package/dist/templates/index.d.ts +13 -0
  40. package/dist/templates/index.mjs +60 -0
  41. package/dist/types.d.ts +2 -0
  42. package/dist/types.mjs +0 -0
  43. package/dist/utils/debug.d.ts +11 -0
  44. package/dist/utils/debug.mjs +71 -0
  45. package/dist/utils/getPackageManager.d.ts +2 -0
  46. package/dist/utils/getPackageManager.mjs +11 -0
  47. package/dist/utils/helpers/helperFactory.d.ts +15 -0
  48. package/dist/utils/helpers/helperFactory.mjs +3 -0
  49. package/dist/utils/helpers/index.d.ts +51 -0
  50. package/dist/utils/helpers/index.mjs +227 -0
  51. package/dist/utils/runCmd.d.ts +1 -0
  52. package/dist/utils/runCmd.mjs +4 -0
  53. package/dist/utils/runPackageManagerCommand.d.ts +4 -0
  54. package/dist/utils/runPackageManagerCommand.mjs +17 -0
  55. package/dist/utils/spawnCmd.d.ts +1 -0
  56. package/dist/utils/spawnCmd.mjs +30 -0
  57. package/dist/utils/validateProjectName.d.ts +8 -0
  58. package/dist/utils/validateProjectName.mjs +14 -0
  59. package/index.js +3 -0
  60. package/package.json +66 -0
package/package.json ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "@tanstack/create-start",
3
+ "version": "1.92.0",
4
+ "description": "Modern and scalable routing for React applications",
5
+ "author": "Tim O'Connell",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/TanStack/router.git",
10
+ "directory": "packages/create-router"
11
+ },
12
+ "homepage": "https://tanstack.com/router",
13
+ "funding": {
14
+ "type": "github",
15
+ "url": "https://github.com/sponsors/tannerlinsley"
16
+ },
17
+ "bin": {
18
+ "create-router": "index.js"
19
+ },
20
+ "type": "module",
21
+ "files": [
22
+ "index.js",
23
+ "templates",
24
+ "dist"
25
+ ],
26
+ "engines": {
27
+ "node": "^18.0.0 || >=20.0.0"
28
+ },
29
+ "exports": {
30
+ ".": {
31
+ "import": "./src/index.ts"
32
+ }
33
+ },
34
+ "dependencies": {
35
+ "gradient-string": "^3.0.0"
36
+ },
37
+ "devDependencies": {
38
+ "@commander-js/extra-typings": "^12.1.0",
39
+ "@inquirer/prompts": "^5.5.0",
40
+ "@inquirer/type": "^3.0.1",
41
+ "@types/cross-spawn": "^6.0.6",
42
+ "@types/validate-npm-package-name": "^4.0.2",
43
+ "cross-spawn": "^7.0.5",
44
+ "fast-glob": "^3.3.2",
45
+ "picocolors": "^1.1.1",
46
+ "rollup-plugin-copy": "^3.5.0",
47
+ "tempy": "^3.1.0",
48
+ "tiny-invariant": "^1.3.3",
49
+ "unbuild": "^2.0.0",
50
+ "validate-npm-package-name": "^5.0.1",
51
+ "yocto-spinner": "^0.1.1",
52
+ "zod": "^3.23.8"
53
+ },
54
+ "peerDependencies": {
55
+ "@types/react": "^18.3.12",
56
+ "@types/react-dom": "^18.3.1",
57
+ "react": "^18.3.1",
58
+ "react-dom": "^18.3.1",
59
+ "vinxi": "0.4.3",
60
+ "@tanstack/react-router": "^1.91.3",
61
+ "@tanstack/start": "^1.91.3",
62
+ "@tanstack/router-devtools": "^1.91.3"
63
+ },
64
+ "peerDependenciesMeta": {},
65
+ "scripts": {}
66
+ }