-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.5 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
{
"name": "relmio",
"version": "0.4.0",
"description": "Install private local OpenAI API and Codex endpoints with explicit provider credential boundaries, plus the existing isolated n8n sidecar.",
"keywords": [
"relmio",
"gpt-5-6-sol",
"gpt-5-6-terra",
"gpt-5-6-luna",
"gpt-2-0-image",
"n8n",
"ai-agent",
"api-key",
"ai",
"chatgpt",
"codex",
"openai"
],
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Demonbane18/relmio.git"
},
"bugs": {
"url": "https://github.com/Demonbane18/relmio/issues"
},
"homepage": "https://relmio.vercel.app/",
"engines": {
"node": ">=22"
},
"packageManager": "npm@10.9.8",
"bin": {
"relmio": "src/cli.js",
"planrelay": "src/cli.js",
"n8n-openai-oauth-setup": "src/cli.js"
},
"files": [
"src",
"scripts/build-npm-package.js",
"scripts/check-release-metadata.js",
"scripts/check-syntax.js",
"scripts/preview.js",
"docs",
"README.md",
"SPEC.md",
"CHANGELOG.md",
"LICENSE",
"NOTICE"
],
"scripts": {
"start": "node src/cli.js",
"preview": "node scripts/preview.js",
"package:build": "node scripts/build-npm-package.js",
"test": "node --test test/*.test.js",
"lint": "node scripts/check-syntax.js",
"release:check": "node scripts/check-release-metadata.js",
"check": "npm run lint && npm run release:check && npm test"
},
"dependencies": {
"ssh2": "1.17.0"
}
}