reasonix 0.13.2 → 0.14.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reasonix",
3
- "version": "0.13.2",
3
+ "version": "0.14.0",
4
4
  "description": "DeepSeek-native coding agent: cache-first loop, flash-first cost control, tool-call repair.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -36,8 +36,14 @@
36
36
  "lint:fix": "biome check --write src tests",
37
37
  "format": "biome format --write src tests",
38
38
  "typecheck": "tsc --noEmit",
39
+ "verify": "npm run lint && npm run typecheck && npm run test --silent",
40
+ "prepare": "simple-git-hooks || true",
39
41
  "prepublishOnly": "npm run lint && npm run typecheck && npm run test && npm run build"
40
42
  },
43
+ "simple-git-hooks": {
44
+ "pre-commit": "npm run lint",
45
+ "pre-push": "npm run verify"
46
+ },
41
47
  "keywords": [
42
48
  "agent",
43
49
  "llm",
@@ -67,7 +73,8 @@
67
73
  "ink": "^5.1.0",
68
74
  "ink-spinner": "^5.0.0",
69
75
  "ink-text-input": "^6.0.0",
70
- "react": "^18.3.1"
76
+ "react": "^18.3.1",
77
+ "string-width": "^7.2.0"
71
78
  },
72
79
  "devDependencies": {
73
80
  "@biomejs/biome": "^1.9.4",
@@ -94,6 +101,7 @@
94
101
  "@types/node": "^22.9.0",
95
102
  "@types/react": "^18.3.12",
96
103
  "esbuild": "^0.21.5",
104
+ "simple-git-hooks": "^2.13.1",
97
105
  "tsup": "^8.3.5",
98
106
  "tsx": "^4.19.2",
99
107
  "typescript": "^5.6.3",