forked from the-open-engine/zeroshot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
162 lines (162 loc) · 4.7 KB
/
Copy pathpackage.json
File metadata and controls
162 lines (162 loc) · 4.7 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "@the-open-engine/zeroshot",
"version": "5.4.0",
"description": "Multi-agent orchestration engine for Claude, Codex, and Gemini",
"main": "src/orchestrator.js",
"bin": {
"zeroshot": "./cli/index.js",
"zeroshot-agent-provider": "./lib/agent-cli-provider/executable.js"
},
"directories": {
"example": "examples",
"test": "tests"
},
"scripts": {
"pretest": "npm run build:agent-cli-provider",
"test": "node tests/run-tests.js",
"test:unit": "node tests/run-tests.js",
"test:slow": "mocha 'tests/integration/**/*.test.js' --timeout 180000",
"test:all": "npm run test && npm run test:slow",
"test:coverage": "c8 npm run test:unit",
"test:coverage:report": "c8 --reporter=html npm run test:unit && echo 'Coverage report generated at coverage/index.html'",
"postinstall": "node scripts/fix-node-pty-permissions.js",
"start": "node cli/index.js",
"typecheck": "tsc --noEmit",
"typecheck:agent-cli-provider": "tsc --project tsconfig.agent-cli-provider.json",
"lint:agent-cli-provider": "eslint \"src/agent-cli-provider/**/*.ts\" \"tests/agent-cli-provider/**/*.ts\"",
"build:agent-cli-provider": "tsc --project tsconfig.agent-cli-provider.build.json",
"test:agent-cli-provider": "node --test tests/agent-cli-provider/*.test.js",
"check:agent-cli-provider:ci": "npm run typecheck:agent-cli-provider && npm run lint:agent-cli-provider && npm run build:agent-cli-provider && npm run test:agent-cli-provider",
"dev:link": "npm link",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"validate:templates": "node scripts/validate-templates.js",
"format": "prettier --write .",
"format:check": "prettier --check .",
"deadcode": "ts-prune --skip node_modules",
"deadcode:files": "unimported",
"deadcode:deps": "depcheck",
"deadcode:all": "npm run deadcode && npm run deadcode:files && npm run deadcode:deps",
"dupcheck": "jscpd src/ --min-lines 5 --min-tokens 50 --threshold 5",
"check": "npm run typecheck && npm run lint",
"check:all": "npm run check && npm run deadcode:all",
"release": "semantic-release",
"prepublishOnly": "npm run lint && npm run typecheck && npm run check:agent-cli-provider:ci",
"prepare": "npm run build:agent-cli-provider && husky"
},
"c8": {
"reporter": [
"text",
"lcov",
"html"
],
"include": [
"src/**/*.js",
"lib/**/*.js",
"cli/**/*.js"
],
"exclude": [
"**/*.test.js",
"**/tests/**"
],
"all": true
},
"keywords": [
"ai",
"agents",
"multi-agent",
"orchestration",
"claude",
"codex",
"gemini",
"automation"
],
"author": "Covibes",
"license": "MIT",
"homepage": "https://github.com/the-open-engine/zeroshot",
"repository": {
"type": "git",
"url": "git+https://github.com/the-open-engine/zeroshot.git"
},
"bugs": {
"url": "https://github.com/the-open-engine/zeroshot/issues"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"src/",
"lib/",
"cli/",
"task-lib/",
"cluster-templates/",
"hooks/",
"docker/",
"scripts/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"dependencies": {
"ajv": "^8.18.0",
"ansi-to-html": "^0.7.2",
"better-sqlite3": "^12.6.2",
"chalk": "^4.1.2",
"commander": "^14.0.2",
"node-pty": "^1.1.0",
"omelette": "^0.4.17",
"pidusage": "^4.0.1",
"puppeteer": "^24.34.0",
"proper-lockfile": "^4.1.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.6",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.0.3",
"c8": "^10.1.3",
"chai": "^6.2.1",
"depcheck": "^1.4.7",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^3.0.5",
"eslint-plugin-unused-imports": "^4.3.0",
"husky": "^9.1.7",
"jscpd": "^3.5.10",
"lint-staged": "^16.2.7",
"mocha": "^11.7.5",
"prettier": "^3.7.4",
"semantic-release": "^25.0.2",
"sinon": "^21.0.0",
"ts-prune": "^0.10.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.4",
"unimported": "^1.31.0"
},
"overrides": {
"cosmiconfig": {
"js-yaml": "4.2.0"
},
"xml2js": "^0.5.0",
"diff": ">=8.0.3",
"tar": ">=7.5.8",
"undici": ">=7.18.2",
"minimatch": ">=10.2.1",
"lodash": ">=4.17.24",
"marked": ">=15.0.7"
},
"lint-staged": {
"*.{js,mjs,cjs}": [
"eslint --fix"
],
"*.{js,mjs,cjs,json,md}": [
"prettier --write"
]
}
}