prjct-cli 3.22.0 → 3.24.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/dist/bin/prjct-core.mjs +403 -387
- package/dist/bin/prjct-hooks.mjs +207 -197
- package/dist/daemon/entry.mjs +339 -323
- package/dist/mcp/server.mjs +126 -116
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prjct-cli",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.24.0",
|
|
4
4
|
"description": "Project memory and workflow context for AI coding agents.",
|
|
5
5
|
"main": "dist/bin/prjct.mjs",
|
|
6
6
|
"bin": {
|
|
@@ -35,7 +35,8 @@
|
|
|
35
35
|
"format:check": "biome format .",
|
|
36
36
|
"check": "biome check .",
|
|
37
37
|
"check:fix": "biome check --write .",
|
|
38
|
-
"test:e2e": "bun test core/__tests__/e2e/"
|
|
38
|
+
"test:e2e": "bun test core/__tests__/e2e/",
|
|
39
|
+
"bench:ab": "bun scripts/bench-ab.ts"
|
|
39
40
|
},
|
|
40
41
|
"keywords": [
|
|
41
42
|
"claude-code",
|