pi-kage 0.3.4 → 0.3.6

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 (3) hide show
  1. package/README.md +20 -5
  2. package/bin/kage.mjs +690 -620
  3. package/package.json +13 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-kage",
3
- "version": "0.3.4",
3
+ "version": "0.3.6",
4
4
  "description": "🥷 Shadow Clone Jutsu for your git repo: copy it into an isolated folder, work in parallel with pi, then merge the session memory back",
5
5
  "keywords": [
6
6
  "pi",
@@ -36,8 +36,18 @@
36
36
  "registry": "https://registry.npmjs.org/"
37
37
  },
38
38
  "scripts": {
39
- "test": "node --test",
40
- "lint": "node --check bin/kage.mjs",
39
+ "build": "tsc && chmod +x bin/kage.mjs",
40
+ "build:test": "tsc -p tsconfig.test.json",
41
+ "typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.test.json",
42
+ "format": "biome check --write .",
43
+ "lint": "biome check . && npm run typecheck",
44
+ "test": "npm run build && npm run build:test && node --test dist/*.test.mjs",
45
+ "prepare": "npm run build",
41
46
  "prepublishOnly": "npm run lint && npm test"
47
+ },
48
+ "devDependencies": {
49
+ "@biomejs/biome": "2.4.16",
50
+ "@types/node": "^18.19.0",
51
+ "typescript": "^5.7.3"
42
52
  }
43
53
  }