-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.64 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
{
"name": "@w3lshdog/hyper-agent",
"version": "0.4.0",
"description": "Shared agent interface standard for the Hyperfocus Zone ecosystem — validate manifests, scaffold agents",
"main": "cli/validate.js",
"types": "types/index.d.ts",
"exports": {
".": "./cli/validate.js",
"./registry": "./cli/registry.js",
"./client": "./cli/client.js"
},
"bin": {
"hyper-agent": "cli/index.js"
},
"scripts": {
"validate": "node cli/index.js validate",
"test": "node --test tests/*.test.js",
"test:templates": "node cli/validate.js templates/python-starter/ && node cli/validate.js templates/node-starter/ && node cli/validate.js templates/typescript-starter/ && node cli/validate.js templates/mcp-starter/ && echo 'All templates valid ✅'",
"test:strict": "node cli/index.js validate templates/ --strict",
"registry:build": "node cli/index.js registry build templates/ --out registry.json",
"studio": "node cli/index.js studio"
},
"keywords": [
"ai-agents",
"hypercode",
"hyperfocus-zone",
"agent-sdk",
"mcp",
"neurodivergent",
"adhd"
],
"author": "welshDog",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/welshDog/HyperAgent-SDK.git"
},
"homepage": "https://github.com/welshDog/HyperAgent-SDK#readme",
"bugs": {
"url": "https://github.com/welshDog/HyperAgent-SDK/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1"
},
"files": [
"cli/",
"templates/",
"studio/",
"types/",
"hyper-agent-spec.json",
"README.md",
"LICENSE"
]
}