-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsmithery.yaml
More file actions
30 lines (28 loc) · 792 Bytes
/
Copy pathsmithery.yaml
File metadata and controls
30 lines (28 loc) · 792 Bytes
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
runtime: "container"
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
configSchema:
type: "object"
required: []
properties:
NPM_REGISTRY_URL:
type: "string"
description: "URL of the NPM registry to use (default: https://registry.npmjs.org)"
default: "https://registry.npmjs.org"
startCommand:
type: "stdio"
configSchema:
type: "object"
required: []
properties:
NPM_REGISTRY_URL:
type: "string"
description: "URL of the NPM registry to use (default: https://registry.npmjs.org)"
default: "https://registry.npmjs.org"
commandFunction: |-
(config) => ({
command: 'node',
args: ['dist/index.js'],
env: {
NPM_REGISTRY_URL: config.NPM_REGISTRY_URL
}
})