plazercli 1.0.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/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "plazercli",
3
+ "version": "1.0.0",
4
+ "description": "CLI para gerar projetos fullstack boilerplate prontos para uso",
5
+ "type": "module",
6
+ "bin": {
7
+ "plazercli": "dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "templates"
12
+ ],
13
+ "scripts": {
14
+ "build": "tsup",
15
+ "dev": "tsup --watch",
16
+ "start": "node dist/index.js",
17
+ "prepublishOnly": "npm run build"
18
+ },
19
+ "keywords": [
20
+ "cli",
21
+ "boilerplate",
22
+ "fullstack",
23
+ "scaffold",
24
+ "generator",
25
+ "monorepo"
26
+ ],
27
+ "author": "",
28
+ "license": "MIT",
29
+ "dependencies": {
30
+ "@inquirer/prompts": "^7.2.0",
31
+ "chalk": "^5.4.1",
32
+ "commander": "^13.1.0",
33
+ "ejs": "^3.1.10",
34
+ "execa": "^9.5.2",
35
+ "fs-extra": "^11.2.0",
36
+ "ora": "^8.1.1",
37
+ "sort-package-json": "^2.12.0",
38
+ "validate-npm-package-name": "^6.0.0"
39
+ },
40
+ "devDependencies": {
41
+ "@types/ejs": "^3.1.5",
42
+ "@types/fs-extra": "^11.0.4",
43
+ "@types/node": "^22.10.0",
44
+ "tsup": "^8.3.5",
45
+ "typescript": "^5.7.0"
46
+ }
47
+ }
@@ -0,0 +1,9 @@
1
+ root = true
2
+
3
+ [*]
4
+ indent_style = space
5
+ indent_size = 2
6
+ end_of_line = lf
7
+ charset = utf-8
8
+ trim_trailing_whitespace = true
9
+ insert_final_newline = true
@@ -0,0 +1,14 @@
1
+ node_modules/
2
+ dist/
3
+ .next/
4
+ .nuxt/
5
+ .angular/
6
+ build/
7
+ *.tgz
8
+ .env
9
+ .env.local
10
+ .env.*.local
11
+ .DS_Store
12
+ *.log
13
+ coverage/
14
+ .turbo/
@@ -0,0 +1 @@
1
+ 20
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "<%= projectName %>",
3
+ "version": "0.1.0",
4
+ "private": true,
5
+ "description": "<%= projectDescription %>",
6
+ "workspaces": [
7
+ "apps/*"
8
+ ],
9
+ "scripts": {
10
+ "dev": "<%= runCmd %> --filter ./apps/* dev",
11
+ "build": "<%= runCmd %> --filter ./apps/* build",
12
+ "lint": "<%= runCmd %> --filter ./apps/* lint",
13
+ "dev:api": "<%= runCmd %> --filter ./apps/api dev",
14
+ "dev:web": "<%= runCmd %> --filter ./apps/web dev"
15
+ },
16
+ "engines": {
17
+ "node": ">=20.0.0"
18
+ }
19
+ }
@@ -0,0 +1,2 @@
1
+ packages:
2
+ - "apps/*"