prjct-cli 0.13.0 → 0.13.2

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/serve.js CHANGED
@@ -334,7 +334,7 @@ if (!fs.existsSync(nextDir)) {
334
334
  }
335
335
 
336
336
  // Start web server in production mode
337
- const web = spawn('npm', ['run', 'start:prod'], {
337
+ const web = spawn('npm', ['run', 'start'], {
338
338
  cwd: webDir,
339
339
  stdio: 'inherit',
340
340
  shell: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prjct-cli",
3
- "version": "0.13.0",
3
+ "version": "0.13.2",
4
4
  "description": "Built for Claude - Ship fast, track progress, stay focused. Developer momentum tool for indie hackers.",
5
5
  "main": "core/index.ts",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  /// <reference types="next" />
2
2
  /// <reference types="next/image-types/global" />
3
- import "./.next/types/routes.d.ts";
3
+ import "./.next/dev/types/routes.d.ts";
4
4
 
5
5
  // NOTE: This file should not be edited
6
6
  // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
@@ -4,10 +4,8 @@
4
4
  "private": true,
5
5
  "scripts": {
6
6
  "dev": "NODE_ENV=development PORT=9471 bun server.ts",
7
- "dev:next": "bun next dev",
8
7
  "build": "bun next build",
9
8
  "start": "NODE_ENV=production PORT=9472 bun server.ts",
10
- "start:prod": "NODE_ENV=production PORT=9472 bun server.ts",
11
9
  "lint": "eslint"
12
10
  },
13
11
  "dependencies": {