mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
47 lines
1.7 KiB
JSON
47 lines
1.7 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"title": "pubspec.yaml",
|
|
"type": "object",
|
|
"additionalProperties": true,
|
|
"properties": {
|
|
"name": { "type": "string" },
|
|
"flutter": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"uses-material-design": { "type": "boolean" },
|
|
"assets": {
|
|
"type": "array",
|
|
"items": { "type": "string" }
|
|
},
|
|
"services": {
|
|
"type": "array",
|
|
"items": { "type": "string" }
|
|
},
|
|
"fonts": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"family": { "type": "string" },
|
|
"fonts": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"asset": { "type": "string" },
|
|
"weight": { "enum": [ 100, 200, 300, 400, 500, 600, 700, 800, 900 ] },
|
|
"style": { "enum": [ "normal", "italic" ] }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|