-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.56 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
{
"name": "harnessctl",
"version": "0.2.17",
"description": "Universal CLI wrapper for coding agents",
"type": "module",
"main": "dist/cli.js",
"bin": {
"harnessctl": "./dist/cli.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "bun run src/cli.ts",
"build": "VERSION=$(node -p \"require('./package.json').version\") && bun build --compile src/cli.ts --outfile harnessctl --define HARNESSCTL_VERSION='\"'$VERSION'\"'",
"bundle": "VERSION=$(node -p \"require('./package.json').version\") && bun build src/cli.ts --outdir dist --target node --format esm --define HARNESSCTL_VERSION='\"'$VERSION'\"' && node -e \"const f='dist/cli.js';let c=require('fs').readFileSync(f,'utf8');c=c.replace(/^#!.*\\n(\\/\\/ @bun\\n)?/,'#!/usr/bin/env node\\n');require('fs').writeFileSync(f,c)\"",
"typecheck": "tsc --noEmit",
"test": "bun test",
"prepublishOnly": "bun run bundle"
},
"keywords": [
"cli",
"coding-agent",
"claude",
"codex",
"deepagents",
"gemini",
"cursor",
"opencode",
"ai",
"developer-tools"
],
"author": "mnvsk97",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mnvsk97/harnessctl.git"
},
"homepage": "https://github.com/mnvsk97/harnessctl",
"bugs": {
"url": "https://github.com/mnvsk97/harnessctl/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"yaml": "^2.7.1"
},
"devDependencies": {
"@types/bun": "^1.3.13",
"@types/node": "22",
"typescript": "^6.0.3"
}
}