praxis-agent 0.5.0 → 0.5.2
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/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "praxis-agent",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "Local-first, single-user general agent for the command line.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "wuqisen",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"build": "tsc -p tsconfig.build.json",
|
|
32
|
-
"check": "npm run format:check && npm run lint && npm run test:docs && npm run check:boundaries && npm run typecheck && npm test && npm run build",
|
|
32
|
+
"check": "npm run format:check && npm run lint && npm run test:docs && npm run verify:release-automation && npm run check:boundaries && npm run typecheck && npm test && npm run build",
|
|
33
33
|
"check:boundaries": "node scripts/check-boundaries.mjs",
|
|
34
34
|
"dev": "tsx src/cli.ts",
|
|
35
35
|
"format": "prettier --write .",
|
|
@@ -97,7 +97,8 @@
|
|
|
97
97
|
"test:web-compat": "npm run build && node scripts/verify-web-compatibility.mjs",
|
|
98
98
|
"test:workflow-compat": "npm run build && node scripts/verify-workflow-compatibility.mjs",
|
|
99
99
|
"test:worktree-compat": "npm run build && node scripts/verify-worktree-compatibility.mjs",
|
|
100
|
-
"typecheck": "tsc --noEmit"
|
|
100
|
+
"typecheck": "tsc --noEmit",
|
|
101
|
+
"verify:release-automation": "node scripts/verify-release-automation.mjs"
|
|
101
102
|
},
|
|
102
103
|
"engines": {
|
|
103
104
|
"node": ">=24"
|