87 lines
2.3 KiB
JSON
87 lines
2.3 KiB
JSON
{
|
|
"name": "@carealytix/codewalkers",
|
|
"version": "0.0.1",
|
|
"description": "Multi-agent workspace for orchestrating multiple AI coding agents",
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@gitlab.com/carealytix/tools/codewalkers.git"
|
|
},
|
|
"license": "UNLICENSED",
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/",
|
|
"access": "restricted"
|
|
},
|
|
"files": [
|
|
"apps/server/dist/",
|
|
"drizzle/"
|
|
],
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
],
|
|
"main": "./apps/server/dist/index.js",
|
|
"bin": {
|
|
"cw": "apps/server/dist/bin/cw.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsx watch apps/server/bin/cw.ts",
|
|
"clean": "rimraf apps/server/dist",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "vitest run --coverage",
|
|
"dev:web": "npm run dev --workspace=apps/web",
|
|
"release": "semantic-release"
|
|
},
|
|
"keywords": [
|
|
"claude",
|
|
"agent",
|
|
"orchestration",
|
|
"multi-agent"
|
|
],
|
|
"author": "",
|
|
"dependencies": {
|
|
"@tiptap/core": "^3.19.0",
|
|
"@tiptap/extension-link": "^3.19.0",
|
|
"@tiptap/markdown": "^3.19.0",
|
|
"@tiptap/starter-kit": "^3.19.0",
|
|
"@trpc/client": "^11.9.0",
|
|
"@trpc/server": "^11.9.0",
|
|
"better-sqlite3": "^12.6.2",
|
|
"commander": "^12.1.0",
|
|
"drizzle-orm": "^0.45.1",
|
|
"execa": "^9.5.2",
|
|
"gray-matter": "^4.0.3",
|
|
"js-yaml": "^4.1.1",
|
|
"motion": "^12.34.5",
|
|
"nanoid": "^5.1.6",
|
|
"pino": "^10.3.0",
|
|
"shiki": "^4.0.1",
|
|
"simple-git": "^3.30.0",
|
|
"unique-names-generator": "^4.7.1",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
"@testing-library/react": "^16.3.2",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"@types/better-sqlite3": "^7.6.13",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^22.10.7",
|
|
"@vitest/coverage-v8": "^4.0.18",
|
|
"drizzle-kit": "^0.31.8",
|
|
"pino-pretty": "^13.1.3",
|
|
"rimraf": "^6.0.1",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.7.3",
|
|
"vitest": "^4.0.18",
|
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@semantic-release/gitlab": "^13.3.2",
|
|
"@semantic-release/npm": "^13.1.5",
|
|
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
"semantic-release": "^25.0.3"
|
|
}
|
|
}
|