mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
- Added a new package `@hexclave/local-config-updater` to manage configuration updates. - Implemented core functionality for reading and updating configuration files using a headless agent. - Integrated with the `@anthropic-ai/claude-agent-sdk` for AI-assisted updates. - Updated the pnpm-lock file to reflect new dependencies and removed the deprecated `@anthropic-ai/claude-agent-sdk` from the dashboard app. - Added tests to ensure the correct behavior of the local config updater. This change enhances the configuration management capabilities within the Hexclave ecosystem.
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"name": "@hexclave/cli",
|
|
"version": "1.0.3",
|
|
"repository": "https://github.com/hexclave/hexclave",
|
|
"description": "The CLI for Hexclave. https://hexclave.com",
|
|
"main": "dist/index.js",
|
|
"type": "module",
|
|
"bin": {
|
|
"hexclave": "./dist/index.js",
|
|
"stack": "./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf node_modules && rimraf dist",
|
|
"build": "tsdown && node scripts/copy-runtime-assets.mjs",
|
|
"dev": "tsdown --watch",
|
|
"lint": "eslint --ext .tsx,.ts .",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run"
|
|
},
|
|
"files": [
|
|
"README.md",
|
|
"dist",
|
|
"CHANGELOG.md",
|
|
"LICENSE"
|
|
],
|
|
"homepage": "https://hexclave.com",
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@inquirer/prompts": "^7.0.0",
|
|
"@sentry/node": "^10.42.0",
|
|
"@hexclave/local-config-updater": "workspace:*",
|
|
"@hexclave/js": "workspace:*",
|
|
"@hexclave/shared": "workspace:*",
|
|
"commander": "^13.1.0",
|
|
"extract-zip": "^2.0.1",
|
|
"jiti": "^2.4.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "20.17.6",
|
|
"rimraf": "^6.0.1",
|
|
"tsdown": "^0.20.3",
|
|
"typescript": "5.9.3"
|
|
},
|
|
"packageManager": "pnpm@11.5.0"
|
|
}
|