mirror of
https://github.com/BradGroux/veritas-kanban.git
synced 2026-09-07 17:05:55 +00:00
Documentation: - Updated README with all new features (squad chat, broadcasts, deliverables, polling, delegation, OpenClaw integration) - Added Pre-Commit Review Protocol to CONTRIBUTING.md (mandatory 4 checks: code, functionality, performance, security) - Added One Agent Per File development rule - Created 5 comprehensive feature docs (docs/features/) - Consolidated and cleaned up 8 scattered implementation docs - Updated lessons learned with 6 additional insights from today Security: - Stripped gateway token from all API responses (write-only field) - Added file locking to notification-service and config-service Performance: - Removed double cache invalidation in squad chat - Added React.memo to message bubble components Version bump: 2.0.0 → 2.1.0 All reviews passed 10/10 (code, functionality, performance, security) Contributors: TARS, CASE, Ava, K-2SO, R2-D2, VERITAS
28 lines
594 B
JSON
28 lines
594 B
JSON
{
|
|
"name": "@veritas-kanban/shared",
|
|
"version": "2.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"typecheck": "tsc --noEmit",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.7.0"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Brad Groux <brad@digitalmeld.io>",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/BradGroux/veritas-kanban.git"
|
|
}
|
|
}
|