-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.81 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.81 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
{
"name": "j3os",
"version": "0.1.0",
"description": "J3OS Framework - Web3 Cross Chain/Multi Chain AI Agent/Swarm DeFi Platform",
"private": true,
"type": "commonjs",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"interactive-cli": "node scripts/interactive.cjs",
"test": "jest --config=config/javascript/jest.config.js",
"test:unit": "jest --config=config/javascript/jest.config.js --testPathPattern=tests/unit",
"test:integration": "jest --config=config/javascript/jest.config.js --testPathPattern=tests/integration",
"test:contracts": "jest --config=config/javascript/jest.config.js --testPathPattern=tests/contracts",
"test:e2e": "jest --config=config/javascript/jest.config.js --testPathPattern=tests/e2e",
"clean": "turbo run clean",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"cli": "ts-node src/commands/index.ts",
"update-imports": "node scripts/update-imports.js",
"run-tests": "node scripts/run-tests.js"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@langchain/community": "^0.3.42",
"@langchain/openai": "^0.4.4",
"@modelcontextprotocol/sdk": "^1.18.2",
"@openzeppelin/contracts": "^5.2.0",
"@pinecone-database/pinecone": "^5.1.1",
"@slack/bolt": "^4.2.1",
"@slack/web-api": "^7.9.1",
"@solana/web3.js": "^1.98.0",
"@xenova/transformers": "^2.17.2",
"algorand-mcp": "^2.7.8",
"algosdk": "^3.5.2",
"axios": "^1.9.0",
"blessed": "^0.1.81",
"blessed-contrib": "^1.0.11",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"conf": "^10.2.0",
"discord.js": "^14.18.0",
"ethers": "^6.13.5",
"figlet": "^1.8.0",
"fs-extra": "^11.3.0",
"hardhat": "^2.22.19",
"inquirer": "^8.2.6",
"langchain-core": "^0.0.4",
"log-symbols": "^4.1.0",
"marked": "^15.0.8",
"marked-terminal": "^7.3.0",
"matrix-js-sdk": "^37.5.0",
"merkletreejs": "^0.5.2",
"node-fetch": "^3.3.2",
"onnxruntime-node": "1.21.0",
"openai": "^4.87.3",
"ora": "^5.4.1",
"progress": "^2.0.3",
"telegraf": "^4.16.3",
"twitter-api-v2": "^1.23.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-ignition": "^0.15.10",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.10",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.13",
"@nomicfoundation/ignition-core": "^0.15.10",
"@openzeppelin/hardhat-upgrades": "^3.9.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^8.2.6",
"@types/jest": "^29.5.14",
"@types/mocha": "^10.0.10",
"@types/node": "^20.17.24",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"dotenv": "^16.4.7",
"eslint": "^8.0.0",
"hardhat-gas-reporter": "^1.0.10",
"jest": "^29.7.0",
"openzeppelin-solidity": "github:OpenZeppelin/openzeppelin-contracts",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"solidity-coverage": "^0.8.14",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"turbo": "^1.10.0",
"typechain": "^8.3.2",
"typescript": "^5.8.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/j3os/framework.git"
},
"keywords": [
"j3os",
"ai",
"agents",
"framework",
"blockchain",
"cross-chain",
"defi",
"swarm"
],
"author": "J3OS",
"license": "MIT",
"bugs": {
"url": "https://github.com/j3os/framework/issues"
},
"homepage": "https://github.com/j3os/framework#readme"
}