Skip to content

Commit 9bf458a

Browse files
committed
chore: bump version to 1.1.4
1 parent 1c7ba9e commit 9bf458a

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

package.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jpisnice/shadcn-ui-mcp-server",
3-
"version": "1.0.4",
3+
"version": "1.1.4",
44
"description": "A Model Context Protocol (MCP) server for shadcn/ui components, providing AI assistants with access to component source code, demos, blocks, and metadata.",
55
"type": "module",
66
"main": "./build/index.js",
@@ -14,11 +14,11 @@
1414
],
1515
"scripts": {
1616
"build": "tsc",
17-
"clean": "rm -rf build",
18-
"prepublishOnly": "npm run security:all && npm run test && npm run clean && npm run build && chmod +x build/index.js",
17+
"clean": "node -e \"const fs=require('fs');if(fs.existsSync('build'))fs.rmSync('build',{recursive:true,force:true})\"",
18+
"prepublishOnly": "npm run security:all && npm run test && npm run clean && npm run build",
1919
"start": "node build/index.js",
2020
"dev": "tsc && node build/index.js",
21-
"test": "./test-package.sh",
21+
"test": "powershell -ExecutionPolicy Bypass -File test-package.ps1",
2222
"examples": "./examples.sh",
2323
"security:audit": "npm audit --audit-level=moderate",
2424
"security:audit:fix": "npm audit fix",
@@ -30,7 +30,9 @@
3030
"version:patch": "node scripts/bump-version.js patch",
3131
"version:minor": "node scripts/bump-version.js minor",
3232
"version:major": "node scripts/bump-version.js major",
33-
"publish:package": "./scripts/publish.sh"
33+
"publish:package": "powershell -ExecutionPolicy Bypass -File scripts/publish-windows.ps1",
34+
"publish:fast": "powershell -ExecutionPolicy Bypass -File scripts/publish-windows.ps1 -SkipSecurity",
35+
"publish:force": "powershell -ExecutionPolicy Bypass -File scripts/publish-windows.ps1 -Force"
3436
},
3537
"keywords": [
3638
"mcp",

0 commit comments

Comments
 (0)