-
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.83 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.83 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": "hookwise",
"version": "1.3.0",
"description": "Config-driven hook framework for Claude Code with guards, analytics, coaching, and interactive TUI",
"type": "module",
"bin": {
"hookwise": "./dist/bin/hookwise.js"
},
"exports": {
".": "./dist/index.js",
"./testing": "./dist/testing/index.js"
},
"files": [
"dist/",
"recipes/",
"examples/",
"scripts/"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"keywords": [
"claude",
"claude-code",
"hooks",
"guard",
"analytics",
"coaching",
"ai-safety",
"developer-tools",
"yaml-config",
"status-line",
"tui",
"recipes",
"feed-platform",
"metacognition"
],
"license": "MIT",
"author": "Vishnu Jayvel <vishnuj81093@gmail.com> (https://github.com/vishnujayvel)",
"repository": {
"type": "git",
"url": "https://github.com/vishnujayvel/hookwise.git"
},
"homepage": "https://github.com/vishnujayvel/hookwise#readme",
"bugs": {
"url": "https://github.com/vishnujayvel/hookwise/issues"
},
"dependencies": {
"better-sqlite3": "^12.6.2",
"ink": "^6.8.0",
"js-yaml": "^4.1.1",
"picomatch": "^4.0.3",
"react": "^19.2.4"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.3.0",
"@types/picomatch": "^4.0.2",
"@types/react": "^19.2.14",
"ink-testing-library": "^4.0.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitepress": "^1.6.4",
"vitest": "^4.0.18"
}
}