-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 4.15 KB
/
Copy pathpackage.json
File metadata and controls
136 lines (136 loc) · 4.15 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "delimit-cli",
"mcpName": "io.github.delimit-ai/delimit-mcp-server",
"version": "4.13.3",
"description": "Unify Claude Code, Codex, Cursor, and Gemini CLI with persistent context, governance, and multi-model debate.",
"main": "index.js",
"files": [
"bin/",
"lib/",
"adapters/",
"gateway/",
"!gateway/ai/social_target.py",
"!gateway/ai/social.py",
"!gateway/ai/social_daemon.py",
"!gateway/ai/social_cache.py",
"!gateway/ai/founding_users.py",
"!gateway/ai/inbox_daemon.py",
"!gateway/ai/inbox_daemon_runner.py",
"!gateway/ai/self_repair/",
"!gateway/ai/self_repair_daemon.py",
"!gateway/ai/corp_dashboard.py",
"!gateway/ai/deliberation.py",
"!gateway/ai/dv_mention_tracker.py",
"!gateway/ai/sensor_twttr.py",
"!gateway/ai/tweet_corpus.py",
"!gateway/ai/tweet_corpus_schema.sql",
"!gateway/ai/twttr241_budget.py",
"!gateway/ai/wireintel_x.py",
"!gateway/ai/content_intel.py",
"!gateway/ai/loop_daemon.py",
"!gateway/ai/loop_engine.py",
"!gateway/ai/content_grounding/",
"!gateway/ai/inbox_drafts/",
"!gateway/ai/inbox_executor.py",
"!gateway/ai/outreach_body_gen.py",
"!gateway/ai/seal/producer.py",
"!gateway/ai/license_core.py",
"gateway/ai/license_core.cpython-*-*.so",
"scripts/",
"!scripts/crosspost_devto.py",
"!scripts/repo_targeting.py",
"!scripts/outreach_report_generator.py",
"!scripts/demo-v420.sh",
"!scripts/demo-v420-clean.sh",
"!scripts/demo-v420-deliberation.sh",
"!scripts/sync-gateway.sh",
"!scripts/build-license-core.sh",
"!scripts/security-check.sh",
"!scripts/test-license-core-so.sh",
"!scripts/test-with-config-guard.js",
"!scripts/verify-config-sentinel.js",
"!gateway/ai/continuity.py",
"server.json",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"bin": {
"delimit": "./bin/delimit-cli.js",
"delimit-cli": "./bin/delimit-cli.js"
},
"scripts": {
"postinstall": "node scripts/postinstall.js",
"sync-gateway": "bash scripts/sync-gateway.sh",
"prepublishOnly": "bash scripts/publish-ci-guard.sh && npm run sync-gateway && bash scripts/build-license-core.sh && bash scripts/security-check.sh",
"test": "node scripts/test-with-config-guard.js",
"test:raw": "node --test tests/_config-sentinel.test.js tests/setup-onboarding.test.js tests/setup-matrix.test.js tests/setup-no-clobber.test.js tests/config-export-import.test.js tests/cross-model-hooks.test.js tests/golden-path.test.js tests/v420-features.test.js tests/v43-wrap-engine.test.js tests/v43-trust-page-engine.test.js tests/v43-ai-sbom-engine.test.js tests/attest-mcp.test.js tests/delimit-home.test.js tests/postinstall-hardening.test.js tests/auth-signin.test.js tests/auth-signout.test.js tests/migration-2092-banner.test.js tests/control-browser.test.js"
},
"keywords": [
"openapi",
"swagger",
"api",
"breaking-changes",
"semver",
"lint",
"linter",
"api-governance",
"api-contracts",
"ci-cd",
"github-actions",
"migration",
"diff",
"schema-validation",
"api-versioning",
"eslint",
"delimit",
"openapi-diff",
"api-linter",
"contract-testing",
"mcp",
"mcp-server",
"model-context-protocol",
"claude-code",
"codex",
"gemini-cli",
"cursor",
"ai-governance",
"ai-agents",
"ai-code-review",
"ci-governance",
"merge-gate",
"attestation",
"signed-attestation",
"sigstore",
"sbom",
"supply-chain-security",
"json-schema",
"json-schema-diff",
"policy-as-code",
"audit-trail",
"ai-coding-assistant",
"pull-request",
"pr-comment",
"developer-tools"
],
"author": "Delimit AI <hello@delimit.ai>",
"license": "MIT",
"homepage": "https://delimit.ai",
"repository": {
"type": "git",
"url": "https://github.com/delimit-ai/delimit-mcp-server.git"
},
"dependencies": {
"axios": "^1.16.0",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"express": "^4.18.0",
"inquirer": "^8.2.0",
"js-yaml": "^4.1.0",
"minimatch": "^5.1.0"
},
"proModuleVersion": "3.10.0",
"engines": {
"node": ">=14.0.0"
}
}