@xtarter/create 0.1.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.
- package/LICENSE +21 -0
- package/README.md +28 -0
- package/package.json +68 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Agustinus Nathaniel
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# @xtarter/create
|
|
2
|
+
|
|
3
|
+
> Curated starter templates for modern web apps — powered by Vite+.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# Interactive picker
|
|
9
|
+
vp create @xtarter
|
|
10
|
+
|
|
11
|
+
# Direct selection
|
|
12
|
+
vp create @xtarter:vite-tailwind
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Templates
|
|
16
|
+
|
|
17
|
+
| Name | Description |
|
|
18
|
+
| --------------- | --------------------------------------------- |
|
|
19
|
+
| `vite-chakra` | Vite 7 + TanStack Router + Chakra UI v3 |
|
|
20
|
+
| `vite-tailwind` | Vite 7 + TanStack Router + Tailwind CSS v4 |
|
|
21
|
+
| `vite-hero` | Vite 7 + Hero UI |
|
|
22
|
+
| `next-chakra` | Next.js 16 + Chakra UI v3 + Biome + Turborepo |
|
|
23
|
+
| `next-tailwind` | Next.js 16 + Tailwind CSS v4 |
|
|
24
|
+
|
|
25
|
+
## Related
|
|
26
|
+
|
|
27
|
+
- [`create-xtarter-app`](https://www.npmjs.com/package/create-xtarter-app) — full-featured CLI (npm, git init, deps install)
|
|
28
|
+
- [`xtarterize`](https://www.npmjs.com/package/xtarterize) — add production configs to existing projects
|
package/package.json
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@xtarter/create",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Curated starter templates for modern web apps",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"scaffold",
|
|
7
|
+
"starter",
|
|
8
|
+
"template",
|
|
9
|
+
"nextjs",
|
|
10
|
+
"vite",
|
|
11
|
+
"react",
|
|
12
|
+
"typescript"
|
|
13
|
+
],
|
|
14
|
+
"homepage": "https://xtarter.sznm.dev",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/agustinusnathaniel/xtarterize/issues"
|
|
17
|
+
},
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"author": "agustinusnathaniel",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/agustinusnathaniel/xtarterize",
|
|
23
|
+
"directory": "apps/xtarter-create"
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"package.json",
|
|
27
|
+
"README.md"
|
|
28
|
+
],
|
|
29
|
+
"type": "module",
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"access": "public"
|
|
32
|
+
},
|
|
33
|
+
"createConfig": {
|
|
34
|
+
"templates": [
|
|
35
|
+
{
|
|
36
|
+
"name": "vite-chakra",
|
|
37
|
+
"description": "Vite Plus, TanStack Router, Chakra UI v3",
|
|
38
|
+
"template": "github:agustinusnathaniel/vite-react-chakra-starter"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "vite-tailwind",
|
|
42
|
+
"description": "Vite Plus, TanStack Router, Tailwind CSS v4",
|
|
43
|
+
"template": "github:agustinusnathaniel/vite-react-tailwind-starter"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "vite-hero",
|
|
47
|
+
"description": "Vite Plus, TanStack Router, Hero UI",
|
|
48
|
+
"template": "github:agustinusnathaniel/vite-react-hero-starter"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "next-chakra",
|
|
52
|
+
"description": "Next.js with Chakra UI",
|
|
53
|
+
"template": "github:agustinusnathaniel/nextarter-chakra"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "next-tailwind",
|
|
57
|
+
"description": "Next.js with Tailwind CSS",
|
|
58
|
+
"template": "github:agustinusnathaniel/nextarter-tailwind"
|
|
59
|
+
}
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
"engines": {
|
|
63
|
+
"node": ">=18"
|
|
64
|
+
},
|
|
65
|
+
"scripts": {
|
|
66
|
+
"build": "echo '@xtarter/create has nothing to build'"
|
|
67
|
+
}
|
|
68
|
+
}
|