harness-evolve 1.0.0

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.
package/package.json ADDED
@@ -0,0 +1,104 @@
1
+ {
2
+ "name": "harness-evolve",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "description": "Self-iteration engine for Claude Code — detects usage patterns and routes optimization recommendations",
6
+ "keywords": [
7
+ "claude-code",
8
+ "hooks",
9
+ "self-improvement",
10
+ "automation",
11
+ "developer-tools",
12
+ "ai"
13
+ ],
14
+ "license": "MIT",
15
+ "author": "Ricky <rickyqin919@gmail.com> (https://github.com/r1ckyIn)",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/r1ckyIn/harness-evolve.git"
19
+ },
20
+ "homepage": "https://github.com/r1ckyIn/harness-evolve#readme",
21
+ "bugs": {
22
+ "url": "https://github.com/r1ckyIn/harness-evolve/issues"
23
+ },
24
+ "main": "dist/index.js",
25
+ "types": "dist/index.d.ts",
26
+ "exports": {
27
+ ".": {
28
+ "types": "./dist/index.d.ts",
29
+ "default": "./dist/index.js"
30
+ },
31
+ "./hooks/user-prompt-submit": {
32
+ "types": "./dist/hooks/user-prompt-submit.d.ts",
33
+ "default": "./dist/hooks/user-prompt-submit.js"
34
+ },
35
+ "./hooks/pre-tool-use": {
36
+ "types": "./dist/hooks/pre-tool-use.d.ts",
37
+ "default": "./dist/hooks/pre-tool-use.js"
38
+ },
39
+ "./hooks/post-tool-use": {
40
+ "types": "./dist/hooks/post-tool-use.d.ts",
41
+ "default": "./dist/hooks/post-tool-use.js"
42
+ },
43
+ "./hooks/post-tool-use-failure": {
44
+ "types": "./dist/hooks/post-tool-use-failure.d.ts",
45
+ "default": "./dist/hooks/post-tool-use-failure.js"
46
+ },
47
+ "./hooks/permission-request": {
48
+ "types": "./dist/hooks/permission-request.d.ts",
49
+ "default": "./dist/hooks/permission-request.js"
50
+ },
51
+ "./hooks/stop": {
52
+ "types": "./dist/hooks/stop.d.ts",
53
+ "default": "./dist/hooks/stop.js"
54
+ },
55
+ "./delivery/run-evolve": {
56
+ "types": "./dist/delivery/run-evolve.d.ts",
57
+ "default": "./dist/delivery/run-evolve.js"
58
+ }
59
+ },
60
+ "bin": {
61
+ "harness-evolve": "dist/cli.js"
62
+ },
63
+ "files": [
64
+ "dist",
65
+ "README.md",
66
+ "LICENSE"
67
+ ],
68
+ "scripts": {
69
+ "build": "tsup",
70
+ "test": "vitest run",
71
+ "test:watch": "vitest",
72
+ "test:coverage": "vitest run --coverage",
73
+ "typecheck": "tsc --noEmit",
74
+ "lint": "tsc --noEmit",
75
+ "check:publint": "publint --strict",
76
+ "check:attw": "attw --pack . --profile esm-only",
77
+ "check:package": "npm run check:publint && npm run check:attw",
78
+ "prepublishOnly": "npm run build && npm run check:package"
79
+ },
80
+ "engines": {
81
+ "node": ">=22.14.0"
82
+ },
83
+ "publishConfig": {
84
+ "provenance": true
85
+ },
86
+ "dependencies": {
87
+ "@commander-js/extra-typings": "^14.0.0",
88
+ "commander": "^14.0.3",
89
+ "proper-lockfile": "^4.1.2",
90
+ "write-file-atomic": "^7.0.0",
91
+ "zod": "^4.3.6"
92
+ },
93
+ "devDependencies": {
94
+ "@arethetypeswrong/cli": "^0.18.2",
95
+ "@types/node": "^22.0.0",
96
+ "@types/proper-lockfile": "^4.1.4",
97
+ "@types/write-file-atomic": "^4.0.3",
98
+ "publint": "^0.3.18",
99
+ "tsup": "^8.5.1",
100
+ "tsx": "^4.21.0",
101
+ "typescript": "~6.0.0",
102
+ "vitest": "^4.1.2"
103
+ }
104
+ }