@nextsparkjs/cli 0.1.0-beta.94 → 0.1.0-beta.97

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/bin/nextspark.js CHANGED
File without changes
package/dist/cli.js CHANGED
@@ -2966,7 +2966,7 @@ async function updatePackageJson(config2) {
2966
2966
  let packageJson;
2967
2967
  if (!await fs8.pathExists(packageJsonPath)) {
2968
2968
  packageJson = {
2969
- name: config2.projectSlug,
2969
+ name: isMonorepoProject(config2) ? "web" : config2.projectSlug,
2970
2970
  version: "0.1.0",
2971
2971
  private: true,
2972
2972
  scripts: {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextsparkjs/cli",
3
- "version": "0.1.0-beta.94",
3
+ "version": "0.1.0-beta.97",
4
4
  "description": "NextSpark CLI - Complete development toolkit",
5
5
  "type": "module",
6
6
  "bin": {
@@ -13,6 +13,10 @@
13
13
  "bin",
14
14
  "templates"
15
15
  ],
16
+ "scripts": {
17
+ "build": "tsup src/cli.ts --format esm --dts --outDir dist",
18
+ "dev": "tsup src/cli.ts --format esm --watch"
19
+ },
16
20
  "dependencies": {
17
21
  "@inquirer/prompts": "^7.2.0",
18
22
  "@nextsparkjs/core": "^0.1.0-beta.75",
@@ -24,12 +28,12 @@
24
28
  "tar": "^7.0.0"
25
29
  },
26
30
  "devDependencies": {
31
+ "@nextsparkjs/core": "workspace:*",
27
32
  "@types/fs-extra": "^11.0.4",
28
33
  "@types/node": "^20.0.0",
29
34
  "@types/tar": "^6.1.0",
30
35
  "tsup": "^8.0.0",
31
- "typescript": "^5.0.0",
32
- "@nextsparkjs/core": "0.1.0-beta.79"
36
+ "typescript": "^5.0.0"
33
37
  },
34
38
  "peerDependencies": {
35
39
  "@nextsparkjs/ai-workflow": ">=0.1.0-beta.0"
@@ -54,9 +58,5 @@
54
58
  },
55
59
  "engines": {
56
60
  "node": ">=18.0.0"
57
- },
58
- "scripts": {
59
- "build": "tsup src/cli.ts --format esm --dts --outDir dist",
60
- "dev": "tsup src/cli.ts --format esm --watch"
61
61
  }
62
- }
62
+ }