-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.55 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
{
"name": "@sevoniva/llm-coding-bridge",
"version": "0.4.4",
"description": "Local bridge for using OpenAI-compatible chat completion providers with coding clients.",
"license": "MIT",
"type": "commonjs",
"bin": {
"llm-coding-bridge": "bin/llm-coding-bridge.js"
},
"files": [
"bin",
"lib",
"docs/configuration.md",
"scripts",
"templates",
".secretlintrc.json",
".secretlintignore",
"README.md",
"LICENSE"
],
"scripts": {
"lint": "node --check bin/llm-coding-bridge.js && node --check lib/*.js && node --check lib/converters/*.js && node --check test/client-setup.test.js && node --check test/smoke.js && node --check scripts/security-scan.js",
"security:scan": "node scripts/security-scan.js",
"secretlint": "secretlint \"**/*\" --secretlintrc .secretlintrc.json --secretlintignore .secretlintignore",
"repo:gate": "node scripts/repo-gate.js",
"sca": "npm audit --audit-level=high --registry=https://registry.npmjs.org",
"test": "node test/client-setup.test.js && node test/smoke.js",
"pack:check": "npm pack --dry-run"
},
"engines": {
"node": ">=18"
},
"keywords": [
"codex",
"claude-code",
"llm",
"openai-compatible",
"responses-api"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sevoniva/llm-coding-bridge.git"
},
"devDependencies": {
"@secretlint/secretlint-rule-preset-recommend": "^13.0.2",
"secretlint": "^13.0.2"
}
}