-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.23 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.23 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
{
"name": "codex-synaptic",
"version": "1.0.0",
"description": "Advanced distributed AI agent orchestration system with neural mesh networking, swarm intelligence, and consensus mechanisms",
"main": "dist/index.js",
"bin": {
"codex-synaptic": "dist/cli/index.js"
},
"files": [
"dist/",
"docker/",
"config/",
".env.example",
"README.md",
"AGENTS.md",
"CHANGELOG.md",
"LICENSE",
"docs/codex-synaptic-cheat-codes.md",
".codex-improvement/SCHEMA_MASTER.yaml"
],
"scripts": {
"build": "tsc && node scripts/dev-cli-link.mjs",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write src/**/*.ts",
"cli": "node dist/cli/index.js",
"cli:dev": "ts-node src/cli/index.ts",
"cli:link": "node scripts/dev-cli-link.mjs",
"prepare": "npm run build",
"test:watch": "vitest",
"export:metrics": "ts-node scripts/observability/exporter.ts",
"release:preflight": "node scripts/release-preflight.mjs"
},
"keywords": [
"codex-synaptic",
"ai",
"agents",
"neural-mesh",
"swarm-intelligence",
"consensus",
"distributed-systems",
"synaptic-networks",
"autonomous-agents"
],
"author": "Parallax Analytics <info@parallaxanalytics.io>",
"license": "AGPL-3.0-only",
"devDependencies": {
"@types/estree": "^1.0.8",
"@types/js-yaml": "^4.0.9",
"@types/json-schema": "^7.0.15",
"@types/node": "^24.3.1",
"@types/react": "^18.2.0",
"@types/sqlite3": "^3.1.11",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"eslint": "^9.35.0",
"globals": "^15.12.0",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"vitest": "^1.6.1"
},
"dependencies": {
"@openai/agents": "^0.1.11",
"chalk": "^5.6.2",
"commander": "^14.0.0",
"crypto-js": "^4.2.0",
"ink": "^5.1.0",
"inquirer": "^12.9.4",
"js-yaml": "^4.1.1",
"openai": "^6.5.0",
"react": "^18.2.0",
"sqlite3": "^5.1.7",
"uuid": "^13.0.0",
"ws": "^8.18.3",
"zod": "^3.25.76"
}
}