Skip to content

Commit 23e2a50

Browse files
authored
fix issue with node build (#92)
1 parent 76e3618 commit 23e2a50

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vibe-kit/grok-cli",
3-
"version": "0.0.31",
3+
"version": "0.0.32",
44
"description": "An open-source AI agent that brings the power of Grok directly into your terminal.",
55
"type": "module",
66
"main": "dist/index.js",
@@ -14,9 +14,12 @@
1414
"grok": "dist/index.js"
1515
},
1616
"scripts": {
17-
"build": "bun run tsc",
17+
"build": "tsc",
18+
"build:bun": "bun run tsc",
1819
"dev": "bun run src/index.ts",
19-
"start": "bun run dist/index.js",
20+
"dev:node": "tsx src/index.ts",
21+
"start": "node dist/index.js",
22+
"start:bun": "bun run dist/index.js",
2023
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
2124
"typecheck": "tsc --noEmit",
2225
"install:bun": "bun install"
@@ -58,9 +61,7 @@
5861
"typescript": "^5.3.3"
5962
},
6063
"engines": {
61-
"node": ">=18.0.0",
62-
"bun": ">=1.0.0"
64+
"node": ">=18.0.0"
6365
},
64-
"packageManager": "[email protected]",
6566
"preferGlobal": true
6667
}

0 commit comments

Comments
 (0)