Files
ui-ux-pro-max-skill/cli/package.json
Viet Tran f9b65919cf fix: replace Bun-specific APIs with Node.js APIs for npm compatibility
- Replace Bun.spawn with exec from child_process in extract.ts
- Replace Bun.file().exists() with access from fs/promises
- Replace Bun.write with writeFile from fs/promises in github.ts
- Add cp and rm from fs/promises for file operations
- Bump version to 1.0.2

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-02 19:23:28 +07:00

39 lines
789 B
JSON

{
"name": "uipro-cli",
"version": "1.0.2",
"description": "CLI to install UI/UX Pro Max skill for AI coding assistants",
"type": "module",
"bin": {
"uipro": "./dist/index.js"
},
"scripts": {
"build": "bun build src/index.ts --outdir dist --target node",
"dev": "bun run src/index.ts",
"prepublishOnly": "bun run build"
},
"keywords": [
"ui",
"ux",
"design",
"claude",
"cursor",
"windsurf",
"ai",
"skill"
],
"author": "",
"license": "CC-BY-NC-4.0",
"dependencies": {
"commander": "^12.1.0",
"chalk": "^5.3.0",
"ora": "^8.1.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/bun": "^1.1.14",
"@types/node": "^22.10.1",
"@types/prompts": "^2.4.9",
"typescript": "^5.7.2"
}
}