mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
Major fixes for installation system robustness and version consistency: **Critical Version Synchronization:** - Update VERSION file from 4.0.0b1 to 4.0.0 for stable release - Fix setup/__init__.py to read version from VERSION file dynamically - Synchronize SuperClaude/__main__.py version reference to 4.0.0 - Establish single source of truth for version management **NPM Package Naming Resolution:** - Rename npm package from 'superclaude' to '@superclaude-org/superclaude' - Resolve naming collision with unrelated GitHub workflow package - Update package description for clarity and accurate branding - Enable proper npm organization scoping **Setup Process Reliability:** - Fix backup system double extension bug in installer.py - Improve component discovery error handling with structured logging - Replace deprecated pkg_resources with modern importlib.resources - Add comprehensive error handling to installation workflows - Convert print statements to proper logging throughout codebase **Error Handling & Logging:** - Add logger integration to ComponentRegistry and Installer classes - Enhance exception handling for component instantiation failures - Improve backup creation error handling with rollback capability - Standardize error reporting across installation system **Import System Modernization:** - Replace deprecated pkg_resources with importlib.resources (Python 3.9+) - Add robust fallback chain for Python 3.8+ compatibility - Improve module discovery reliability across different environments These changes significantly improve installation success rates and eliminate major pain points preventing successful SuperClaude deployment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
66 lines
1.5 KiB
JSON
66 lines
1.5 KiB
JSON
{
|
|
"name": "@superclaude-org/superclaude",
|
|
"version": "4.0.0",
|
|
"description": "SuperClaude Framework NPM wrapper - Official Node.js wrapper for the Python SuperClaude package. Enhances Claude Code with specialized commands and AI development tools.",
|
|
"bin": {
|
|
"superclaude": "./bin/cli.js"
|
|
},
|
|
"scripts": {
|
|
"postinstall": "node ./bin/install.js",
|
|
"update": "node ./bin/update.js",
|
|
"lint": "eslint . --ext .js,.mjs,.cjs",
|
|
"test": "echo \"No tests defined yet\" && exit 0"
|
|
},
|
|
"files": [
|
|
"bin/",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"author": {
|
|
"name": "SuperClaude Org",
|
|
"url": "https://github.com/SuperClaude-Org"
|
|
},
|
|
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/SuperClaude-Org/SuperClaude_Framework.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/SuperClaude-Org/SuperClaude_Framework/issues"
|
|
},
|
|
"homepage": "https://github.com/SuperClaude-Org/SuperClaude_Framework#readme",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"superclaude",
|
|
"ai",
|
|
"cli",
|
|
"pypi",
|
|
"python",
|
|
"wrapper",
|
|
"cross-platform",
|
|
"automation"
|
|
],
|
|
"engines": {
|
|
"node": ">=16"
|
|
},
|
|
"os": [
|
|
"darwin",
|
|
"linux",
|
|
"win32"
|
|
],
|
|
"cpu": [
|
|
"x64",
|
|
"arm64"
|
|
],
|
|
"funding": {
|
|
"type": "github",
|
|
"url": "https://github.com/sponsors/SuperClaude-Org"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"preferGlobal": true,
|
|
"type": "commonjs"
|
|
}
|