-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.54 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.54 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
{
"name": "@spfunctions/harness",
"version": "0.1.0",
"type": "module",
"main": "dist/cli/index.js",
"bin": {
"sparkco": "dist/cli/bin.js"
},
"files": [
"dist",
"templates",
"deploy",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && chmod +x dist/cli/bin.js",
"dev": "tsx bin/sparkco.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"prepublishOnly": "npm run build"
},
"keywords": [
"agent",
"ai",
"cli",
"harness",
"runtime",
"cloudflare",
"claude-code",
"pi",
"self-modifying",
"sparkco"
],
"author": "Sparkco",
"license": "Apache-2.0",
"description": "Dual pi-agent runtime harness. Two agents (local + Cloudflare) negotiate, share state, and self-modify via a 5-message protocol.",
"homepage": "https://sparkco.ai/harness",
"repository": {
"type": "git",
"url": "git+https://github.com/spfunctions/harness.git"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@hono/node-server": "^1.19.11",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"enquirer": "^2.4.0",
"eventsource": "^3.0.0",
"execa": "^9.0.0",
"hono": "^4.0.0",
"nanoid": "^5.0.0",
"ora": "^8.0.0",
"tsx": "^4.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@cloudflare/workers-types": ">=4.0.0",
"miniflare": "^3.0.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0",
"wrangler": ">=3.80.0"
}
}