-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.47 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.47 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "hyperagent",
"version": "0.1.0",
"private": true,
"description": "A self recursive AI agent framework and collaboration workspace",
"main": "dist/index.js",
"workspaces": [
"packages/*",
"serve"
],
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .ts,.tsx",
"check-errors": "tsc --noEmit",
"build:runner": "tsc -p tsconfig.json",
"test": "vitest run --config vitest.noworker.config.ts",
"test:integration": "vitest run tests/integration",
"pretest:e2e": "npm run docker:workflow-runner:build",
"test:e2e": "vitest run --config vitest.noworker.config.ts tests/e2e",
"pretest:e2e-worker": "npm run docker:workflow-runner:build",
"test:e2e-worker": "vitest run --config vitest.worker.config.ts",
"test:observability": "vitest run observability/tests",
"build-image": "docker build -t ${REGISTRY}/${NAME}:${GIT_SHA}-${TIMESTAMP} .",
"push-image": "docker push ${REGISTRY}/${NAME}:${GIT_SHA}-${TIMESTAMP}",
"storybook": "storybook dev -p 6006 -c .storybook",
"storybook:build": "storybook build -c .storybook",
"storybook:test": "test-storybook -c .storybook",
"certs:generate": "node scripts/generate-certs.js",
"ui:server": "NODE_ENV=development tsx watch src/server/index.ts",
"ui:web": "vite --config src/client/vite.config.ts",
"ui:build": "vite build --config src/client/vite.config.ts",
"ui:dev": "concurrently -k -n server,web -c green,cyan \"npm:ui:server\" \"npm:ui:web\"",
"docker:workflow-runner:build": "docker build -t hyperagent-workflow-runner:latest -f docker/workflow-runner/Dockerfile ."
},
"author": "",
"license": "MIT",
"dependencies": {
"@github/copilot": "^0.0.365",
"@hexafield/agent-workflow": "0.1.0",
"@opencode-ai/sdk": "^1.0.129",
"@solidjs/router": "^0.15.4",
"@solidjs/testing-library": "^0.8.10",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"app-root-path": "^3.1.0",
"axios": "^1.13.2",
"better-sqlite3": "^12.4.6",
"cors": "^2.8.5",
"diff": "^8.0.2",
"express": "^5.1.0",
"http-proxy-middleware": "^3.0.5",
"multer": "^2.0.2",
"node-pty": "^1.0.0",
"ollama": "^0.6.0",
"pacote": "^21.0.4",
"solid-js": "^1.9.3",
"ws": "^8.18.3",
"zod": "^4.1.12",
"zod-to-json-schema": "^3.25.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/html-vite": "^8.6.14",
"@storybook/test": "^8.6.14",
"@storybook/test-runner": "^0.16.0",
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.7",
"@types/node": "^20.4.2",
"@types/pacote": "^11.1.8",
"@types/supertest": "^6.0.3",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.2",
"cross-fetch": "^3.1.8",
"eslint": "^8.47.0",
"jsdom": "^27.2.0",
"pg": "^8.13.1",
"postcss": "^8.4.49",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"selfsigned": "^4.0.0",
"storybook": "^8.6.14",
"supertest": "^7.1.4",
"tailwindcss": "^3.4.15",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^5.4.10",
"vite-plugin-solid": "^2.10.2",
"vitest": "^4.0.15"
},
"engines": {
"node": ">=18"
}
}