-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.76 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.76 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "wisp-agentdiff",
"version": "1.4.1",
"description": "Per-agent diffs for Claude Code parallel subagent workflows",
"type": "module",
"bin": {
"wisp-agentdiff": "./dist/index.js"
},
"files": [
"dist",
"templates",
"skills",
"commands",
"hooks",
".claude-plugin",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check src tests",
"lint:fix": "biome check --write src tests",
"format": "biome format --write src tests",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run typecheck && npm run test && npm run build",
"prepublishOnly": "npm run check"
},
"engines": {
"node": ">=20"
},
"keywords": [
"claude",
"claude-code",
"anthropic",
"subagents",
"agents",
"git",
"git-worktree",
"worktree",
"diff",
"code-review",
"tui",
"ink",
"review",
"cli"
],
"author": "Samuel Heftberger <215513082+Samuel0101010@users.noreply.github.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Samuel0101010/wisp-agentdiff.git"
},
"bugs": {
"url": "https://github.com/Samuel0101010/wisp-agentdiff/issues"
},
"homepage": "https://github.com/Samuel0101010/wisp-agentdiff#readme",
"dependencies": {
"commander": "^12.1.0",
"ink": "^5.0.1",
"react": "^18.3.1",
"simple-git": "^3.27.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"ink-testing-library": "^4.0.0",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
}
}