Skip to content

Commit 2390515

Browse files
authored
Merge pull request #7 from vrknetha/hotfix/binary-fix
fix: update package.json binary configuration
2 parents f6d0629 + c663661 commit 2390515

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

package.json

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,25 @@
11
{
22
"name": "mcp-server-firecrawl",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "MCP server for FireCrawl web scraping integration",
55
"type": "module",
6-
"main": "dist/src/index.js",
7-
"bin": {
8-
"mcp-server-firecrawl": "dist/src/index.js"
9-
},
6+
"bin": "dist/src/index.js",
107
"files": [
11-
"dist"
8+
"dist",
9+
"README.md",
10+
"LICENSE"
1211
],
12+
"publishConfig": {
13+
"access": "public"
14+
},
1315
"scripts": {
1416
"build": "tsc",
1517
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
1618
"start": "node dist/src/index.js",
1719
"lint": "eslint src/**/*.ts",
1820
"lint:fix": "eslint src/**/*.ts --fix",
19-
"format": "prettier --write ."
21+
"format": "prettier --write .",
22+
"prepare": "npm run build"
2023
},
2124
"license": "ISC",
2225
"dependencies": {

0 commit comments

Comments
 (0)