package.json
1 { 2 "name": "pi-move-session", 3 "version": "0.2.4", 4 "description": "Move a live Pi session to a different working directory without losing context and jump into the new session", 5 "keywords": ["pi-package", "pi", "pi-coding-agent", "session"], 6 "license": "MIT", 7 "repository": { 8 "type": "git", 9 "url": "git+https://github.com/w-winter/dot314.git", 10 "directory": "packages/pi-move-session" 11 }, 12 "bugs": { 13 "url": "https://github.com/w-winter/dot314/issues" 14 }, 15 "homepage": "https://github.com/w-winter/dot314#readme", 16 "pi": { 17 "extensions": ["extensions/move-session.ts"] 18 }, 19 "peerDependencies": { 20 "@mariozechner/pi-coding-agent": ">=0.51.0" 21 }, 22 "scripts": { 23 "prepack": "node ../../scripts/pi-package-prepack.mjs" 24 }, 25 "files": ["extensions/**", "README.md", "LICENSE", "package.json"], 26 "dot314Prepack": { 27 "copy": [ 28 { "from": "../../extensions/move-session.ts", "to": "extensions/move-session.ts" }, 29 { 30 "from": "../../extensions/_shared/normalize-target-cwd.ts", 31 "to": "extensions/_shared/normalize-target-cwd.ts" 32 }, 33 { "from": "../../LICENSE", "to": "LICENSE" } 34 ] 35 } 36 }