-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.57 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.57 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
{
"name": "@ordo/platform",
"version": "0.1.0",
"description": "Ordo Digital Civilization Platform - Autonomous AI Agents with Complete Lifecycles",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"bin": {
"ordo": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ordo-platform/ordo.git"
},
"keywords": [
"autonomous-agent",
"solana",
"agi",
"superintelligence",
"digital-civilization",
"evolution",
"consciousness"
],
"license": "MIT",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"dev:debug": "tsx watch --inspect=0.0.0.0:9229 src/index.ts",
"dev:docker": "docker-compose -f docker-compose.dev.yml up",
"dev:docker:build": "docker-compose -f docker-compose.dev.yml up --build",
"dev:docker:down": "docker-compose -f docker-compose.dev.yml down",
"dev:validator": "solana-test-validator --reset --quiet",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"validate-cost": "tsx src/infrastructure/validate-cost-reduction.ts",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"clean": "rm -rf dist",
"setup:local": "npm install && npm run build && cp .env.example .env",
"metadata:upload": "tsx scripts/upload-metadata.ts",
"metadata:upload:devnet": "tsx scripts/upload-metadata.ts --network devnet --type all",
"metadata:upload:mainnet": "tsx scripts/upload-metadata.ts --network mainnet --type all",
"metadata:fetch": "npx @solana-program/program-metadata@latest fetch idl AgentReg11111111111111111111111111111111111",
"metadata:fetch:devnet": "npx @solana-program/program-metadata@latest fetch idl AgentReg11111111111111111111111111111111111 --rpc https://api.devnet.solana.com",
"fix:solana-version": "powershell -ExecutionPolicy Bypass -File ./fix-solana-version.ps1"
},
"dependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@magicblock-labs/ephemeral-rollups-sdk": "^0.8.5",
"@slack/bolt": "^4.6.0",
"@solana-agent-kit/plugin-defi": "^2.0.8",
"@solana-agent-kit/plugin-misc": "^2.0.6",
"@solana-agent-kit/plugin-nft": "^2.0.7",
"@solana-agent-kit/plugin-token": "^2.0.9",
"@solana-mobile/mobile-wallet-adapter-protocol": "^2.2.5",
"@solana-mobile/mobile-wallet-adapter-protocol-web3js": "^2.2.5",
"@solana/wallet-adapter-base": "^0.9.27",
"@solana/wallet-adapter-wallets": "^0.19.37",
"@solana/web3.js": "^1.95.8",
"@supabase/supabase-js": "^2.47.10",
"better-sqlite3": "^11.0.0",
"bs58": "^6.0.0",
"chalk": "^5.3.0",
"cron-parser": "^4.9.0",
"discord.js": "^14.25.1",
"dotenv": "^16.4.7",
"gray-matter": "^4.0.3",
"openai": "^4.104.0",
"ora": "^8.0.0",
"simple-git": "^3.24.0",
"siwe": "^2.3.0",
"solana-agent-kit": "^2.0.10",
"telegraf": "^4.16.3",
"tweetnacl": "^1.0.3",
"ulid": "^2.3.0",
"viem": "^2.44.2",
"x402-solana": "^2.0.4",
"yaml": "^2.4.0"
},
"devDependencies": {
"@fast-check/vitest": "^0.2.4",
"@solana/kit": "^6.1.0",
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"fast-check": "^4.5.3",
"prettier": "^3.4.2",
"supabase": "^2.76.11",
"tsx": "^4.7.0",
"typescript": "^5.9.3",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}