harness-crafter 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/dist/index.d.ts +1 -0
- package/dist/index.js +1979 -0
- package/package.json +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "harness-crafter",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "AI Agent Harness Builder & Adjuster CLI for Claude Code",
|
|
5
|
+
"author": "t_oda",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"claude",
|
|
9
|
+
"claude-code",
|
|
10
|
+
"ai",
|
|
11
|
+
"harness",
|
|
12
|
+
"cli",
|
|
13
|
+
"llm"
|
|
14
|
+
],
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/t_oda/harness-crafter.git"
|
|
18
|
+
},
|
|
19
|
+
"type": "module",
|
|
20
|
+
"bin": {
|
|
21
|
+
"harness-crafter": "dist/index.js"
|
|
22
|
+
},
|
|
23
|
+
"main": "./dist/index.js",
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
|
+
"files": [
|
|
26
|
+
"dist",
|
|
27
|
+
"templates"
|
|
28
|
+
],
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=20"
|
|
31
|
+
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"dev": "tsx src/index.ts",
|
|
34
|
+
"prebuild": "tsx scripts/embed-templates.ts",
|
|
35
|
+
"build": "tsup",
|
|
36
|
+
"postbuild": "chmod +x dist/index.js",
|
|
37
|
+
"build:verify": "node dist/index.js --version",
|
|
38
|
+
"test": "vitest run --exclude tests/e2e/**",
|
|
39
|
+
"test:e2e": "npm run build --silent && vitest run tests/e2e/",
|
|
40
|
+
"test:all": "vitest run",
|
|
41
|
+
"test:watch": "vitest --exclude tests/e2e/**",
|
|
42
|
+
"test:coverage": "vitest run --coverage --exclude tests/e2e/**",
|
|
43
|
+
"schema:generate": "tsx scripts/generate-schema.ts",
|
|
44
|
+
"lint": "tsc --noEmit"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@anthropic-ai/sdk": "^0.97.1",
|
|
48
|
+
"chalk": "^5.3.0",
|
|
49
|
+
"chokidar": "^4.0.1",
|
|
50
|
+
"commander": "^12.1.0",
|
|
51
|
+
"inquirer": "^10.2.2",
|
|
52
|
+
"js-tiktoken": "^1.0.15",
|
|
53
|
+
"ora": "^8.1.0",
|
|
54
|
+
"zod": "^3.23.8"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@types/node": "^22.0.0",
|
|
58
|
+
"@vitest/coverage-v8": "^2.1.8",
|
|
59
|
+
"execa": "^9.6.1",
|
|
60
|
+
"tsup": "^8.3.0",
|
|
61
|
+
"tsx": "^4.19.2",
|
|
62
|
+
"typescript": "^5.6.3",
|
|
63
|
+
"vitest": "^2.1.8",
|
|
64
|
+
"zod-to-json-schema": "^3.25.2"
|
|
65
|
+
}
|
|
66
|
+
}
|