-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "penv",
"version": "0.1.0",
"description": "Collision-safe preview environments, one per git worktree: each worktree gets its own database, cache index, and ports so parallel worktrees never collide and never touch the shared dev resources.",
"type": "module",
"license": "MIT",
"author": "Ivan Bakalov <17004703+DXTimer@users.noreply.github.com> (https://github.com/DXTimer)",
"homepage": "https://github.com/DXTimer/penv#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/DXTimer/penv.git"
},
"bugs": {
"url": "https://github.com/DXTimer/penv/issues"
},
"keywords": [
"preview-environment",
"isolation",
"ports",
"database",
"redis",
"worktree",
"monorepo",
"claude-code",
"codex",
"bun",
"cli",
"developer-tools"
],
"bin": {
"penv": "bin/penv"
},
"files": [
"bin",
"penv",
"samples",
"skills",
"install",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
}
}