Properties
NAME | TYPE | DESCRIPTION |
key | string | Framework key. |
name | string | Framework Name. |
buildRuntime | string | Default runtime version. |
runtimes | array | List of supported runtime versions. |
adapters | array | List of supported adapters. Can be one of:
|
Example
JSON
{
"key": "sveltekit",
"name": "SvelteKit",
"buildRuntime": "node-22",
"runtimes": [
"static-1",
"node-22"
],
"adapters": [
{
"key": "static",
"installCommand": "npm install",
"buildCommand": "npm run build",
"outputDirectory": "./dist",
"fallbackFile": "index.html"
}
]
}
JSON
{
"key": "sveltekit",
"name": "SvelteKit",
"buildRuntime": "node-22",
"runtimes": [
"static-1",
"node-22"
],
"adapters": [
{
"key": "static",
"installCommand": "npm install",
"buildCommand": "npm run build",
"outputDirectory": "./dist",
"fallbackFile": "index.html"
}
]
}