@hyphaene/hexa-ts-kit 1.7.0 → 1.7.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/README.md +16 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -174,6 +174,22 @@ match: "*.composable.ts"
|
|
|
174
174
|
---
|
|
175
175
|
```
|
|
176
176
|
|
|
177
|
+
## Development
|
|
178
|
+
|
|
179
|
+
### Playground
|
|
180
|
+
|
|
181
|
+
Interactive web UI for testing lint rules.
|
|
182
|
+
|
|
183
|
+
**Live version:** https://hexa-ts-kit.vercel.app/
|
|
184
|
+
|
|
185
|
+
**Local development:**
|
|
186
|
+
|
|
187
|
+
```bash
|
|
188
|
+
npm run playground
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
Opens at http://localhost:3000
|
|
192
|
+
|
|
177
193
|
## Requirements
|
|
178
194
|
|
|
179
195
|
- Node.js 20+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hyphaene/hexa-ts-kit",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.2",
|
|
4
4
|
"description": "TypeScript dev kit for Claude Code agents: architecture linting, scaffolding, knowledge analysis",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -22,7 +22,8 @@
|
|
|
22
22
|
"typecheck": "tsc --noEmit",
|
|
23
23
|
"test": "vitest run",
|
|
24
24
|
"test:watch": "vitest",
|
|
25
|
-
"test:coverage": "vitest run --coverage"
|
|
25
|
+
"test:coverage": "vitest run --coverage",
|
|
26
|
+
"playground": "npm run dev --prefix packages/playground"
|
|
26
27
|
},
|
|
27
28
|
"repository": {
|
|
28
29
|
"type": "git",
|