91 lines
2.8 KiB
JSON
91 lines
2.8 KiB
JSON
|
|
{
|
||
|
|
"name": "claude-code-config-manager",
|
||
|
|
"version": "3.0.0",
|
||
|
|
"description": "Web-based tool for managing Claude Code projects, subagents, slash commands, hooks, and MCP servers",
|
||
|
|
"main": "src/backend/server.js",
|
||
|
|
"bin": {
|
||
|
|
"claude-code-config-manager": "./bin/cli.js"
|
||
|
|
},
|
||
|
|
"files": [
|
||
|
|
"bin/",
|
||
|
|
"dist/",
|
||
|
|
"src/",
|
||
|
|
"README.md",
|
||
|
|
"LICENSE"
|
||
|
|
],
|
||
|
|
"scripts": {
|
||
|
|
"dev": "vite",
|
||
|
|
"build": "vite build",
|
||
|
|
"preview": "vite preview",
|
||
|
|
"prepublishOnly": "npm run build",
|
||
|
|
"start": "node src/backend/server.js",
|
||
|
|
"dev:backend": "node --watch src/backend/server.js",
|
||
|
|
"server:check": "./.claude/skills/server-management/scripts/ensure-server-running.sh",
|
||
|
|
"server:restart": "./.claude/skills/server-management/scripts/ensure-server-running.sh --restart",
|
||
|
|
"test": "NODE_OPTIONS='--max-old-space-size=4096' jest",
|
||
|
|
"test:backend": "NODE_OPTIONS='--max-old-space-size=4096' jest tests/backend",
|
||
|
|
"test:frontend": "playwright test",
|
||
|
|
"test:frontend:component": "playwright test tests/frontend",
|
||
|
|
"test:frontend:e2e": "playwright test tests/e2e",
|
||
|
|
"test:frontend:visual": "playwright test 300-visual-regression.spec.js",
|
||
|
|
"test:frontend:unit": "vitest run",
|
||
|
|
"test:frontend:unit:watch": "vitest",
|
||
|
|
"test:frontend:unit:coverage": "vitest run --coverage",
|
||
|
|
"test:full": "npm run test:backend && npm run test:frontend:unit && npm run test:frontend",
|
||
|
|
"test:watch": "jest --watch",
|
||
|
|
"test:coverage": "jest --coverage",
|
||
|
|
"test:visual:update": "playwright test 300-visual-regression.spec.js --update-snapshots",
|
||
|
|
"test:visual:report": "playwright show-report"
|
||
|
|
},
|
||
|
|
"keywords": [
|
||
|
|
"claude-code",
|
||
|
|
"manager",
|
||
|
|
"subagents",
|
||
|
|
"mcp"
|
||
|
|
],
|
||
|
|
"author": "Mike Eckert",
|
||
|
|
"license": "MIT",
|
||
|
|
"dependencies": {
|
||
|
|
"@primevue/themes": "^4.4.1",
|
||
|
|
"@vitejs/plugin-vue": "^6.0.1",
|
||
|
|
"cors": "^2.8.5",
|
||
|
|
"express": "^4.18.2",
|
||
|
|
"gray-matter": "^4.0.3",
|
||
|
|
"pinia": "^3.0.3",
|
||
|
|
"primeicons": "^7.0.0",
|
||
|
|
"primevue": "^4.4.1",
|
||
|
|
"tailwindcss-primeui": "^0.6.1",
|
||
|
|
"vite": "^7.1.10",
|
||
|
|
"vue": "^3.5.22",
|
||
|
|
"vue-router": "^4.6.3"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@playwright/test": "^1.56.0",
|
||
|
|
"@tailwindcss/postcss": "^4.1.17",
|
||
|
|
"@vue/test-utils": "^2.4.6",
|
||
|
|
"autoprefixer": "^10.4.22",
|
||
|
|
"axe-playwright": "^2.2.2",
|
||
|
|
"happy-dom": "^20.0.10",
|
||
|
|
"jest": "^30.2.0",
|
||
|
|
"postcss": "^8.5.6",
|
||
|
|
"supertest": "^7.1.4",
|
||
|
|
"tailwindcss": "^4.1.17",
|
||
|
|
"vitest": "^4.0.8"
|
||
|
|
},
|
||
|
|
"engines": {
|
||
|
|
"node": ">=18.0.0"
|
||
|
|
},
|
||
|
|
"directories": {
|
||
|
|
"doc": "docs",
|
||
|
|
"test": "tests"
|
||
|
|
},
|
||
|
|
"repository": {
|
||
|
|
"type": "git",
|
||
|
|
"url": "git+https://github.com/nitromike502/claude-code-config-manager.git"
|
||
|
|
},
|
||
|
|
"bugs": {
|
||
|
|
"url": "https://github.com/nitromike502/claude-code-config-manager/issues"
|
||
|
|
},
|
||
|
|
"homepage": "https://github.com/nitromike502/claude-code-config-manager#readme"
|
||
|
|
}
|