-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.16 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
{
"name": "farm",
"version": "1.0.0",
"description": "Sentinel Farm — my-org bootstrap, recursive agent orchestration, and directed evolution harness",
"type": "module",
"bin": {
"farm": "dist/index.js"
},
"main": "dist/index.js",
"files": [
"dist",
"docs",
"LICENSE",
"README.md"
],
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun --format esm --banner '#!/usr/bin/env bun' && chmod +x dist/index.js",
"clean": "rm -rf dist",
"test": "bun test",
"prepublishOnly": "npm run clean && npm run build && bun test"
},
"dependencies": {},
"devDependencies": {
"@types/bun": "latest"
},
"keywords": [
"ai-agent",
"my-org",
"agent-orchestration",
"task-decomposition",
"cli",
"recursive-ai",
"organizational-ai",
"agent-harness",
"directed-evolution",
"dark-software-factory"
],
"homepage": "https://github.com/wisbech/farm",
"repository": {
"type": "git",
"url": "https://github.com/wisbech/farm.git"
},
"license": "MIT",
"engines": {
"bun": ">=1.0.0"
}
}