-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2 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
{
"name": "openclaw-sidex-kit",
"version": "1.0.0",
"description": "SDK for building autonomous AI trading agents on Sidex — with survival mechanics, multi-LLM support, risk management, and multi-exchange pipelines.",
"main": "core/index.js",
"types": "types.d.ts",
"exports": {
".": {
"import": "./core/index.js",
"types": "./types.d.ts"
},
"./sdk": {
"import": "./sdk.js",
"types": "./types.d.ts"
},
"./core": {
"import": "./core/index.js",
"types": "./types.d.ts"
},
"./pipelines/*": "./pipelines/*/scripts/*.mjs",
"./pipelines/sentiment": "./pipelines/market_intelligence/social_sentiment.js",
"./evolution": {
"import": "./core/evolution/index.js"
}
},
"files": [
"core/",
"pipelines/",
"sdk.js",
"evolution.js",
"types.d.ts",
"README.md",
"SDK.md",
".env.example"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"setup": "node quick-setup/setup.js",
"install:full": "bash quick-setup/install.sh",
"start": "node agent.js",
"start:agent": "node agent.js",
"evolve": "node evolution.js"
},
"keywords": [
"trading",
"bot",
"sidex",
"ai",
"autonomous-agent",
"crypto",
"llm",
"survival",
"risk-management",
"sdk",
"self-evolving"
],
"author": "Sidex Devs",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/sidex-fun/openclaw-sidex-kit"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"chalk": "^5.6.2",
"dotenv": "^16.6.1",
"inquirer": "^9.3.8",
"minimist": "^1.2.8",
"node-fetch": "^3.3.2",
"viem": "^2.45.1",
"ws": "^8.16.0"
},
"type": "module"
}