-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.77 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.77 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
{
"name": "eremos-core",
"version": "0.1.0",
"description": "Modular agent framework for on-chain activity monitoring and early signal detection.",
"main": "index.js",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"dev": "tsx watch agents/example.ts",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"validate-agent": "tsx scripts/validate-agent.ts",
"generate-agent": "tsx scripts/generate-agent.ts",
"generate-signal": "tsx scripts/generate-signal.ts",
"simulate-cluster": "tsx scripts/simulate-cluster.ts",
"stress-test": "tsx scripts/stress-test.ts",
"dev-agent": "tsx scripts/dev-agent.ts",
"export-memory": "tsx scripts/export-agent-memory.ts",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"typecheck": "tsc --noEmit"
},
"keywords": [
"agent",
"onchain",
"modular",
"blockchain",
"framework",
"solana",
"monitoring",
"signals",
"swarm",
"autonomous",
"typescript"
],
"license": "MIT",
"author": "EremosCore",
"repository": {
"type": "git",
"url": "https://github.com/EremosCore/Eremos.git"
},
"bugs": {
"url": "https://github.com/EremosCore/Eremos/issues"
},
"homepage": "https://www.eremos.io",
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"tsx": "^3.12.10",
"typescript": "^5.2.2"
},
"dependencies": {
"@solana/web3.js": "^1.78.0"
}
}