@msishamim/create-next-monorepo 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,60 @@
1
+ {
2
+ "name": "@msishamim/create-next-monorepo",
3
+ "version": "1.0.0",
4
+ "description": "Generate production-ready Next.js + NestJS/Express monorepos with Turborepo in one command",
5
+ "author": "MSI Shamim <im.msishamim@gmail.com>",
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "main": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "bin": {
11
+ "create-next-monorepo": "bin/cli.js"
12
+ },
13
+ "files": [
14
+ "dist",
15
+ "bin"
16
+ ],
17
+ "scripts": {
18
+ "build": "tsup",
19
+ "dev": "tsx src/cli.ts",
20
+ "test": "vitest run",
21
+ "test:watch": "vitest",
22
+ "prepublishOnly": "npm run build"
23
+ },
24
+ "engines": {
25
+ "node": ">=18"
26
+ },
27
+ "keywords": [
28
+ "nextjs",
29
+ "nestjs",
30
+ "monorepo",
31
+ "turborepo",
32
+ "generator",
33
+ "scaffold",
34
+ "cli",
35
+ "fullstack",
36
+ "react",
37
+ "typescript"
38
+ ],
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "git+https://github.com/msi-shamim/create-next-monorepo.git"
42
+ },
43
+ "homepage": "https://github.com/msi-shamim/create-next-monorepo#readme",
44
+ "bugs": {
45
+ "url": "https://github.com/msi-shamim/create-next-monorepo/issues"
46
+ },
47
+ "dependencies": {
48
+ "chalk": "^5.4.1",
49
+ "commander": "^13.1.0",
50
+ "execa": "^9.5.2",
51
+ "ora": "^8.2.0"
52
+ },
53
+ "devDependencies": {
54
+ "@types/node": "^22.15.3",
55
+ "tsup": "^8.4.0",
56
+ "tsx": "^4.19.4",
57
+ "typescript": "^5.8.3",
58
+ "vitest": "^3.1.2"
59
+ }
60
+ }