miniread 1.19.0 → 1.20.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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -55,6 +55,7 @@ Use `miniread` when you need readable JavaScript/TypeScript from minified input
55
55
 
56
56
  ```bash
57
57
  pnpm install
58
+ pnpm run download-sources # Downloads Claude Code versions for evaluation
58
59
  pnpm run build
59
60
  node bin/miniread --help
60
61
  ```
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "miniread",
3
3
  "author": "Łukasz Jerciński",
4
4
  "license": "MIT",
5
- "version": "1.19.0",
5
+ "version": "1.20.0",
6
6
  "description": "Transform minified JavaScript/TypeScript into a more readable form using deterministic AST-based transforms.",
7
7
  "repository": {
8
8
  "type": "git",
@@ -35,6 +35,7 @@
35
35
  ],
36
36
  "scripts": {
37
37
  "prepare": "git config core.hooksPath .githooks",
38
+ "download-sources": "node --experimental-strip-types scripts/download-sources.ts",
38
39
  "prepublishOnly": "pnpm run rebuild",
39
40
  "build": "node --experimental-strip-types scripts/generate-registry.ts && tsc -p tsconfig.app.json",
40
41
  "check": "pnpm -s run rebuild && node bin/miniread-evaluate -- --check",