|
1 | 1 | { |
2 | 2 | "name": "@jpisnice/shadcn-ui-mcp-server", |
3 | | - "version": "1.0.4", |
| 3 | + "version": "1.1.4", |
4 | 4 | "description": "A Model Context Protocol (MCP) server for shadcn/ui components, providing AI assistants with access to component source code, demos, blocks, and metadata.", |
5 | 5 | "type": "module", |
6 | 6 | "main": "./build/index.js", |
|
14 | 14 | ], |
15 | 15 | "scripts": { |
16 | 16 | "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", |
19 | 19 | "start": "node build/index.js", |
20 | 20 | "dev": "tsc && node build/index.js", |
21 | | - "test": "./test-package.sh", |
| 21 | + "test": "powershell -ExecutionPolicy Bypass -File test-package.ps1", |
22 | 22 | "examples": "./examples.sh", |
23 | 23 | "security:audit": "npm audit --audit-level=moderate", |
24 | 24 | "security:audit:fix": "npm audit fix", |
|
30 | 30 | "version:patch": "node scripts/bump-version.js patch", |
31 | 31 | "version:minor": "node scripts/bump-version.js minor", |
32 | 32 | "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" |
34 | 36 | }, |
35 | 37 | "keywords": [ |
36 | 38 | "mcp", |
|
0 commit comments