-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.69 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.69 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@agent-relay/factory",
"version": "0.1.57",
"description": "Agent factory — triage, dispatch, merge-gate for relayfile-driven workspaces",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/AgentWorkforce/factory.git"
},
"homepage": "https://github.com/AgentWorkforce/factory#readme",
"bugs": {
"url": "https://github.com/AgentWorkforce/factory/issues"
},
"type": "module",
"engines": {
"node": ">=20.18.1"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"schemas",
"bin/factory.mjs",
"scripts/factory-canary.sh",
"scripts/com.agentrelay.factory-canary.plist.example",
"package.json",
"README.md"
],
"bin": {
"factory": "bin/factory.mjs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./observability": {
"types": "./dist/observability/index.d.ts",
"import": "./dist/observability/index.js"
},
"./telemetry": {
"types": "./dist/telemetry.d.ts",
"import": "./dist/telemetry.js"
},
"./testing": {
"types": "./dist/testing/index.d.ts",
"import": "./dist/testing/index.js"
},
"./writeback": {
"types": "./dist/writeback/index.d.ts",
"import": "./dist/writeback/index.js"
},
"./node": {
"types": "./dist/node/factory.node.d.ts",
"import": "./dist/node/factory.node.js"
},
"./featuremap": {
"types": "./dist/featuremap/index.d.ts",
"import": "./dist/featuremap/index.js"
},
"./feature-guardian": {
"types": "./dist/feature-guardian/index.d.ts",
"import": "./dist/feature-guardian/index.js"
},
"./hosted": {
"types": "./dist/hosted/index.d.ts",
"import": "./dist/hosted/index.js"
},
"./environments": {
"types": "./dist/environments/index.d.ts",
"import": "./dist/environments/index.js"
},
"./verification-stack.schema.json": "./schemas/verification-stack.schema.json",
"./kubernetes-environment-stack.schema.json": "./schemas/kubernetes-environment-stack.schema.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"featuremap:check": "node bin/factory.mjs featuremap check",
"test": "vitest run",
"test:e2e:kubernetes": "bash scripts/test-kubernetes-provider-e2e.sh",
"test:e2e:load": "tsx test/e2e/load-harness.e2e.ts",
"test:e2e:verification": "tsx test/e2e/verification-gate.e2e.ts",
"test:stack-e2e": "tsx test/e2e/stack-deployer.e2e.ts",
"verify:e2e": "vitest run test/e2e/run-cost-accounting.test.ts && node scripts/verify-packed-e2e.mjs",
"factory-build": "factory-build/run-factory-build.sh"
},
"dependencies": {
"@agent-relay/cloud": "^10.6.4",
"@agent-relay/fleet": "^10.6.4",
"@agent-relay/harness-driver": "^10.6.4",
"@agent-relay/integration-prompts": "^10.6.4",
"@agent-relay/sdk": "^10.6.4",
"@agentworkforce/delivery": "^4.1.23",
"@agentworkforce/review-kit": "^4.1.34",
"@agentworkforce/runtime": "^4.1.23",
"@relayfile/relay-helpers": "^0.4.6",
"@relayfile/sdk": "0.10.34",
"@relayflows/core": "^1.0.3",
"agent-relay": "^10.6.4",
"proper-lockfile": "^4.1.2",
"yaml": "^2.9.0",
"zod": "^3.25.76"
},
"overrides": {
"@scalar/postman-to-openapi": "0.4.10",
"listr2": "9.0.5"
},
"devDependencies": {
"@agentworkforce/persona-kit": "^4.1.23",
"@types/node": "^22.10.2",
"@types/proper-lockfile": "^4.1.4",
"esbuild": "^0.28.1",
"tsc-alias": "^1.8.17",
"tsx": "4.23.1",
"typescript": "^5.7.0",
"vitest": "^4.1.8"
}
}