create-esa-stack 0.1.10 → 0.1.12
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 +12 -0
- package/README.md +32 -0
- package/dist/cli.js +2214 -84
- package/package.json +10 -7
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-esa-stack",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "CLI tool to scaffold Next.js projects with
|
|
3
|
+
"version": "0.1.12",
|
|
4
|
+
"description": "CLI tool to scaffold Next.js projects with esa's preferred tech stack",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"create-esa-stack": "./dist/cli.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
|
+
"publish": "npm publish",
|
|
10
11
|
"build": "bun build ./src/cli.ts --outdir ./dist --target node --format esm",
|
|
11
12
|
"dev": "bun run ./src/cli.ts",
|
|
12
13
|
"prepublishOnly": "bun run build"
|
|
@@ -29,7 +30,11 @@
|
|
|
29
30
|
"shadcn",
|
|
30
31
|
"tanstack-query"
|
|
31
32
|
],
|
|
32
|
-
"author":
|
|
33
|
+
"author": {
|
|
34
|
+
"email": "mikhaelesaa@gmail.com",
|
|
35
|
+
"name": "mikhaelesa",
|
|
36
|
+
"url": "https://mikhael-esa.framer.website/"
|
|
37
|
+
},
|
|
33
38
|
"license": "MIT",
|
|
34
39
|
"repository": {
|
|
35
40
|
"type": "git",
|
|
@@ -46,10 +51,8 @@
|
|
|
46
51
|
"CHANGELOG.md"
|
|
47
52
|
],
|
|
48
53
|
"dependencies": {
|
|
49
|
-
"@clack/prompts": "^0.8.2"
|
|
50
|
-
|
|
51
|
-
"devDependencies": {
|
|
52
|
-
"@types/bun": "latest"
|
|
54
|
+
"@clack/prompts": "^0.8.2",
|
|
55
|
+
"commander": "^14.0.2"
|
|
53
56
|
},
|
|
54
57
|
"engines": {
|
|
55
58
|
"node": ">=18.0.0"
|