-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.52 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.52 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": "@elata-biosciences/agentforge",
"version": "0.2.0",
"description": "Type-safe agent-based simulation framework for Foundry/EVM protocols",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"agentforge": "./dist/cli/index.js",
"forge-sim": "./dist/cli/index.js"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./toy": {
"types": "./dist/toy/index.d.ts",
"import": "./dist/toy/index.js"
},
"./adapters": {
"types": "./dist/adapters/index.d.ts",
"import": "./dist/adapters/index.js"
},
"./llm": {
"types": "./dist/agents/llm/types.d.ts",
"import": "./dist/agents/llm/types.js"
},
"./llm/providers": {
"types": "./dist/agents/llm/providers/index.d.ts",
"import": "./dist/agents/llm/providers/index.js"
}
},
"sideEffects": false,
"files": ["dist", "README.md", "LICENSE"],
"scripts": {
"build": "tsc && node scripts/copy-cli-assets.mjs",
"ui:sync": "pnpm -C dashboard-app build && node scripts/sync-dashboard-app.mjs && pnpm run build",
"build:watch": "tsc --watch",
"dev": "tsx watch src/cli/index.ts",
"dev:cli": "tsx src/cli/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist coverage sim/results",
"prepare": "husky || true",
"prepublishOnly": "pnpm run test && pnpm run build",
"sim:toy": "tsx src/cli/index.ts run --toy",
"sim:llm-gossip": "tsx src/cli/index.ts run examples/llm-gossip/scenario.ts --mode exploration",
"sim:llm-gossip:deterministic": "tsx src/cli/index.ts run examples/llm-gossip/scenario.ts --mode deterministic",
"sim:doctor": "tsx src/cli/index.ts doctor",
"changeset": "changeset",
"release:tag": "changeset tag",
"docs": "typedoc",
"docs:watch": "typedoc --watch",
"docs:generate": "typedoc --options typedoc.mintlify.json",
"docs:site": "npx mintlify dev --dir docs-site",
"docs:build": "npx mintlify build --dir docs-site"
},
"keywords": [
"foundry",
"solidity",
"agent-based-modeling",
"simulation",
"evm",
"viem",
"testing",
"smart-contract-testing",
"defi",
"protocol-testing",
"anvil",
"stress-testing"
],
"author": "wkyleg.eth",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Elata-Biosciences/agentforge"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@scure/bip32": "^1.3.0",
"@scure/bip39": "^1.2.0",
"commander": "^12.1.0",
"ml-matrix": "^6.12.1",
"pino": "^9.6.0",
"pino-pretty": "^13.1.3",
"tsx": "^4.19.0",
"viem": "^2.21.0",
"ws": "^8.19.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@changesets/cli": "^2.27.0",
"@types/node": "^22.10.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^2.1.0",
"@vitest/ui": "^2.1.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"typedoc": "^0.27.0",
"typedoc-plugin-markdown": "^4.4.1",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": ["biome check --write .", "biome format --write ."],
"*.{json,md,yml,yaml}": ["biome format --write ."]
}
}