-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.6 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.6 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
{
"name": "@hyperlight-dev/hyperagent",
"version": "0.1.0",
"type": "module",
"description": "Interactive AI agent using GitHub Copilot SDK with Hyperlight sandboxed JS execution",
"main": "dist/lib/hyperagent.cjs",
"bin": {
"hyperagent": "./dist/bin/hyperagent"
},
"files": [
"dist/"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyperlight-dev/hyperagent.git"
},
"scripts": {
"start": "tsx src/agent/index.ts",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"build:modules": "node scripts/build-modules.js",
"fmt": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"plugins/**/*.ts\" \"builtin-modules/**/*.js\"",
"fmt:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" \"plugins/**/*.ts\" \"builtin-modules/**/*.js\"",
"check": "npm run fmt:check && npm run typecheck && npm run test",
"prepare": "[ ! -f scripts/build-modules.js ] || npm run build:modules",
"postinstall": "[ ! -f scripts/patch-vscode-jsonrpc.js ] || (node scripts/patch-vscode-jsonrpc.js && node scripts/check-native-runtime.js)"
},
"dependencies": {
"@github/copilot-sdk": "^0.1.32",
"@hyperlight/js-host-api": "file:deps/js-host-api",
"boxen": "^8.0.1",
"hyperlight-analysis": "file:src/code-validator/guest",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "^25.3.3",
"@xarsh/ooxml-validator": "^0.1.10",
"prettier": "^3.8.1",
"tsx": "^4.0.0",
"typescript": "^5.8.0",
"vitest": "^4.0.18"
}
}