darwin.diy 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "darwin.diy",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "A multi-agent management system for creating and managing evolving AI agents",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "darwin": "dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "README.md",
13
+ "LICENSE"
14
+ ],
15
+ "keywords": [
16
+ "ai",
17
+ "agents"
18
+ ],
19
+ "license": "GPL-3.0-or-later",
20
+ "scripts": {
21
+ "start": "bun run src/index.ts",
22
+ "dev": "bun run --watch src/index.ts",
23
+ "build": "bun build src/index.ts --outdir=dist --target=node --format=esm --minify --sourcemap=external && chmod +x dist/index.js",
24
+ "typecheck": "tsc --noEmit",
25
+ "lint": "eslint src",
26
+ "lint:fix": "eslint src --fix",
27
+ "check": "bun run typecheck && bun run lint",
28
+ "prepublishOnly": "bun run check && bun run build"
29
+ },
30
+ "dependencies": {
31
+ "@clack/prompts": "^0.11.0",
32
+ "@opencode-ai/plugin": "^1.1.34",
33
+ "openai": "^4.104.0",
34
+ "zod": "^4.3.6"
35
+ },
36
+ "devDependencies": {
37
+ "@types/bun": "latest",
38
+ "@typescript-eslint/eslint-plugin": "^8.53.1",
39
+ "@typescript-eslint/parser": "^8.53.1",
40
+ "eslint": "^9.39.2"
41
+ }
42
+ }