1
0
Fork 0
freesewing/config/software/designs.json

981 lines
19 KiB
JSON
Raw Normal View History

chore: Re-structure workspaces, enforce build order These are some changes in the way the monorepo is structured, that are aimed at making it easier to get started. There are two important changes: **Multiple workspaces** We had a yarn workspaces setup at `packages/*`. But our monorepo has grown to 92 packages which can be overwhelming for people not familiar with the package names. To remedy this, I've split it into 4 different workspaces: - `designs/*`: Holds FreeSewing designs (think patterns) - `plugins/*`: Holds FreeSewing plugins - `packages/*`: Holds other packages published on NPM - `sites/*`: Holds software that is not published as an NPM package, such as our various websites and backend API This should make it easier to find things, and to answer questions like *where do I find the code for the plugins*. **Updated reconfigure script to handle build order** One problem when bootstrapping the repo is inter-dependencies between packages. For example, building a pattern will only work once `plugin-bundle` is built. Which will only work once all plugins in the bundle or built. And that will only work when `core` is built, and so on. This can be frustrating for new users as `yarn buildall` will fail. And it gets overlooked by seasoned devs because they're likely to have every package built in their repo so this issue doesn't concern them. To remedy this, we now have a `config/build-order.mjs` file and the updated `/scripts/reconfigure.mjs` script will enforce the build order so that things *just work*.
2022-06-16 17:11:31 +02:00
{
2023-05-05 19:56:51 +02:00
"aaron": {
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a A-shirt or tank top",
2023-05-05 19:56:51 +02:00
"design": "Joost De Cock",
"difficulty": 2,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"tops",
"underwear"
],
"techniques": [
"hem",
"stretch",
"knitBinding",
"curvedSeam"
]
},
"albert": {
2023-05-05 19:56:51 +02:00
"code": "Wouter Van Wageningen",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for an apron",
2023-05-05 19:56:51 +02:00
"design": "Wouter Van Wageningen",
"difficulty": 2,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"accessories"
],
"techniques": [
"hem",
"knitBinding",
"curvedSeam",
"pocket"
]
},
"bee": {
2023-05-05 19:56:51 +02:00
"code": "bobgeorgethe3rd",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a bikini top",
2023-05-05 19:56:51 +02:00
"design": "PrudenceRabbit",
"difficulty": 3,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"tops",
"swimwear"
],
"techniques": [
"hem",
"stretch",
"curvedSeam",
"precision"
]
},
"bella": {
2023-05-05 19:56:51 +02:00
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a womenswear bodice block",
"design": [
"Bella Incognito",
"Joost De Cock"
],
2023-05-05 19:56:51 +02:00
"difficulty": 3,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"blocks",
"tops"
],
"techniques": [
"dart",
"block"
]
},
"benjamin": {
2023-05-05 19:56:51 +02:00
"code": "Wouter Van Wageningen",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a bow tie",
2023-05-05 19:56:51 +02:00
"design": "Wouter Van Wageningen",
"difficulty": 3,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"accessories"
],
"techniques": [
"precision",
"interfacing"
]
},
"bent": {
2023-05-05 19:56:51 +02:00
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a menswear body block with a two-part sleeve",
2023-05-05 19:56:51 +02:00
"design": "Joost De Cock",
"difficulty": 3,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"blocks",
"tops"
],
"techniques": [
"hem",
"curvedSeam",
"setSleeve"
]
},
"bob": {
2023-05-05 19:56:51 +02:00
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a bib",
2023-05-05 19:56:51 +02:00
"design": "Joost De Cock",
"difficulty": 3,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"accessories",
"infants"
],
"techniques": [
"biasTape",
"curvedSeam",
"snap"
]
},
"breanna": {
2023-05-05 19:56:51 +02:00
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a basic body block for womenswear",
2023-05-05 19:56:51 +02:00
"design": "Joost De Cock",
"difficulty": 3,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"blocks",
"tops"
],
"techniques": [
"block",
"dart"
]
},
"brian": {
2023-05-05 19:56:51 +02:00
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a basic body block for menswear",
2023-05-05 19:56:51 +02:00
"design": "Joost De Cock",
"difficulty": 3,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"blocks",
"tops"
],
"techniques": [
"block",
"flatSleeve"
]
},
"bruce": {
2023-05-05 19:56:51 +02:00
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for boxer briefs",
2023-05-05 19:56:51 +02:00
"design": "Joost De Cock",
"difficulty": 3,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"tops",
"underwear"
],
"techniques": [
"stretch",
"hem",
"curvedSeam",
"elastic"
]
},
"carlita": {
2023-05-05 19:56:51 +02:00
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for Sherlock Holmes cosplay; Or just a nice long coat",
"design": [
"Anneke Caramin",
"Joost De Cock"
],
2023-05-05 19:56:51 +02:00
"difficulty": 5,
2023-10-05 22:59:36 +00:00
"lab": true,
"org": true,
"tags": [
"tops",
"coats"
],
2023-09-16 10:35:00 +02:00
"techniques": [
"hem",
"pocket",
"curvedSeam",
"precision",
"setSleeve",
"weltPocket",
"lining",
2023-09-16 16:52:16 +02:00
"princessSeam",
"interfacing",
"button"
2023-09-16 10:35:00 +02:00
]
2023-05-05 19:56:51 +02:00
},
"carlton": {
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for Sherlock Holmes cosplay; Or just a nice long coat",
"design": [
"Anneke Caramin",
"Joost De Cock"
],
2023-05-05 19:56:51 +02:00
"difficulty": 5,
2023-10-05 22:59:36 +00:00
"lab": true,
"org": true,
"tags": [
"tops",
"coats"
],
2023-09-16 16:52:16 +02:00
"techniques": [
"hem",
"pocket",
"curvedSeam",
"precision",
"setSleeve",
"weltPocket",
"lining",
"interfacing",
"button"
]
2023-05-05 19:56:51 +02:00
},
"cathrin": {
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a underbust corset / waist trainer",
"design": [
"Cathrin Åhlén",
"Joost De Cock"
],
2023-05-05 19:56:51 +02:00
"difficulty": 4,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"tops",
"underwear"
],
"techniques": [
"boning",
"precision",
"curvedSeam",
"interfacing"
]
},
"charlie": {
2023-05-05 19:56:51 +02:00
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for chino trousers",
2023-05-05 19:56:51 +02:00
"design": "Joost De Cock",
"difficulty": 3,
2023-10-05 22:59:36 +00:00
"lab": true,
"org": true,
"tags": [
"bottoms",
"trousers"
],
2023-09-16 19:59:01 +02:00
"techniques": [
"weltPocket",
"curvedSeams",
"interfacing",
"fly",
"zipper",
"button",
"dart",
"hem",
"seamPocket"
]
2023-05-05 19:56:51 +02:00
},
"cornelius": {
"code": "Wouter Van Wageningen",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for cycling breeches, based on the Keystone drafting system",
2023-05-05 19:56:51 +02:00
"design": "Wouter Van Wageningen",
"difficulty": 3,
2023-10-05 22:59:36 +00:00
"lab": true,
"org": true,
"tags": [
"bottoms",
"trousers"
],
2023-10-09 18:04:39 +00:00
"techniques": [
"curvedSeams",
"fly",
"zipper",
"button",
"pocket"
]
2023-05-05 19:56:51 +02:00
},
"diana": {
"code": "Erica Alcusa Sáez",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a top with a draped neck",
2023-05-05 19:56:51 +02:00
"design": "Erica Alcusa Sáez",
"difficulty": 2,
2023-10-05 22:59:36 +00:00
"lab": true,
"org": true,
"tags": [
"tops"
],
"techniques": [
"curvedSeam",
"flatSleeve",
"hem"
]
2023-05-05 19:56:51 +02:00
},
"examples": {
2023-10-05 22:59:36 +00:00
"code": "Joost De Cock",
2023-05-05 19:56:51 +02:00
"description": "A FreeSewing pattern holding examples for our documentation",
2023-10-05 22:59:36 +00:00
"lab": false,
"org": false
2023-05-05 19:56:51 +02:00
},
"florence": {
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a face mask",
2023-05-05 19:56:51 +02:00
"design": "Joost De Cock",
"difficulty": 1,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"accessories"
],
"techniques": [
"curvedSeam"
]
},
"florent": {
"code": [
"Quentin Felix",
"Joost De Cock"
],
2023-05-05 19:56:51 +02:00
"description": "A FreeSewing pattern for a flat cap",
"design": "Quentin Felix",
"difficulty": 3,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"accessories",
"hats"
],
"techniques": [
"curvedSeam"
]
},
2023-10-17 08:22:15 +02:00
"gozer": {
"code": "Wouter Van Wageningen",
"description": "A FreeSewing pattern for a ghost costume",
"design": "Wouter Van Wageningen",
"difficulty": 1,
"lab": true,
"org": true,
2023-10-17 08:22:15 +02:00
"tags": [
"costumes"
],
"techniques": [
"hem"
]
},
2023-10-05 22:59:36 +00:00
"hi": {
2023-05-05 19:56:51 +02:00
"code": "Wouter Van Wageningen",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a shark plush toy",
2023-05-05 19:56:51 +02:00
"design": "Wouter Van Wageningen",
"difficulty": 4,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"accessories",
"toys"
],
"techniques": [
"curvedSeam",
"dart"
]
},
"holmes": {
"code": [
"Erica Alcusa Sáez",
"bobgeorgethe3rd"
],
2023-05-05 19:56:51 +02:00
"description": "A FreeSewing pattern for a Sherlock Holmes hat",
"design": "Erica Alcusa Sáez",
"difficulty": 3,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"accessories",
"hats"
],
"techniques": [
"curvedSeam",
"lining"
]
},
"hortensia": {
2023-05-05 19:56:51 +02:00
"code": "Wouter Van Wageningen",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a handbag",
"design": [
"Stoffsuchti",
"Wouter Van Wageningen"
],
2023-05-05 19:56:51 +02:00
"difficulty": 3,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"accessories",
"bags"
],
"techniques": [
"curvedSeam",
"precision",
"lining",
"zipper"
]
},
"huey": {
2023-05-05 19:56:51 +02:00
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a zip-up hoodie",
2023-05-05 19:56:51 +02:00
"design": "Joost De Cock",
"difficulty": 3,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"tops"
],
"techniques": [
"curvedSeam",
"pocket",
"zipper",
"ribbing",
"flatSleeve"
]
},
"hugo": {
2023-05-05 19:56:51 +02:00
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a hooded jumper with raglan sleeves",
2023-05-05 19:56:51 +02:00
"design": "Joost De Cock",
"difficulty": 3,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"tops"
],
"techniques": [
"curvedSeam",
"pocket",
"ribbing",
"raglanSleeve"
]
},
"jaeger": {
2023-05-05 19:56:51 +02:00
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a sport coat style jacket",
2023-05-05 19:56:51 +02:00
"design": "Joost De Cock",
"difficulty": 5,
2023-10-05 22:59:36 +00:00
"lab": true,
"org": true,
"tags": [
"tops",
"coats"
],
2023-09-17 17:06:47 +02:00
"techniques": [
"hem",
"pocket",
"curvedSeam",
"precision",
"setSleeve",
"weltPocket",
"lining",
"interfacing",
"button"
]
2023-05-05 19:56:51 +02:00
},
"legend": {
2023-10-05 22:59:36 +00:00
"code": "Joost De Cock",
2023-05-05 19:56:51 +02:00
"description": "A FreeSewing pattern to document pattern notation",
2023-10-05 22:59:36 +00:00
"lab": false,
"org": false
2023-05-05 19:56:51 +02:00
},
"lucy": {
"code": "SeaZeeZee",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a historical tie-on pocket",
2023-05-05 19:56:51 +02:00
"design": "SeaZeeZee",
"difficulty": 2,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"accessories",
"historical",
"bags"
],
"techniques": [
"curvedSeam"
]
},
2024-02-04 10:52:32 +01:00
"lumina": {
"code": "Wouter Van Wageningen",
"description": "A FreeSewing pattern for leggings",
"design": "Wouter Van Wageningen",
"difficulty": 3,
"lab": true,
"org": true,
"tags": [
"bottoms",
"trousers"
],
"techniques": [
"stretch",
"curvedSeam",
"elastic"
]
},
"lumira": {
"code": "Wouter Van Wageningen",
"description": "A FreeSewing pattern for leggings",
"design": "Wouter Van Wageningen",
"difficulty": 3,
"lab": true,
"org": true,
"tags": [
"bottoms",
"trousers"
],
"techniques": [
"stretch",
"curvedSeam",
"elastic"
]
},
2023-10-05 22:59:36 +00:00
"lunetius": {
2023-05-05 19:56:51 +02:00
"code": "Rika Tamaike",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a lacerna, a historical Roman cloak",
2023-05-05 19:56:51 +02:00
"design": "Rika Tamaike",
"difficulty": 1,
2023-10-05 22:59:36 +00:00
"lab": true,
"org": true,
"tags": [
"tops",
"coats",
"historical"
],
"techniques": [
"hem"
]
2023-05-05 19:56:51 +02:00
},
"magde": {
"code": "clegganator259",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a bike messenger bag",
2023-05-05 19:56:51 +02:00
"design": "clegganator259",
"difficulty": 3,
2023-10-05 22:59:36 +00:00
"lab": true,
"org": false,
"tags": [
"accessories",
"bags"
],
"techniques": []
2023-05-05 19:56:51 +02:00
},
"naomiwu": {
"description": "A FreeSewing pattern for Naomi Wu's signature cargo skirt",
"code": "Joost De Cock",
"design": ["Naomi Wu", "Joost De Cock"],
"difficulty": 3,
2024-01-06 11:57:11 +01:00
"lab": false,
"org": false,
"tags": ["bottoms", "skirts"],
"techniques": ["button", "hem", "pocket", "lining"]
},
2023-05-05 19:56:51 +02:00
"noble": {
"code": "Wouter Van Wageningen",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a princess seam bodice block",
2023-05-05 19:56:51 +02:00
"design": "Wouter Van Wageningen",
"difficulty": 3,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"blocks",
"tops"
],
"techniques": [
2023-10-14 13:10:31 +02:00
"block",
2023-10-05 22:59:36 +00:00
"curvedSeam",
"precision",
"princessSeam"
]
},
"octoplushy": {
2023-05-05 19:56:51 +02:00
"code": "Wouter Van Wageningen",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for an octopus plushy toy",
2023-05-05 19:56:51 +02:00
"design": "Wouter Van Wageningen",
"difficulty": 4,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"accessories",
"toys"
],
"techniques": [
"curvedSeam",
"precision"
]
2023-05-05 19:56:51 +02:00
},
"onyx": {
"code": "Thrunic",
2023-12-13 23:04:03 +00:00
"description": "A FreeSewing pattern for one-piece garments",
"design": "Thrunic",
2023-10-14 08:57:44 -04:00
"difficulty": 4,
2023-12-13 23:04:03 +00:00
"lab": true,
"org": true,
"tags": [
"swimwear",
"pajamas",
"onePiece"
],
"techniques": [
"hem",
"curvedSeam",
"stretch",
"lining",
"zipper",
"ribbing"
]
},
2024-02-04 10:52:32 +01:00
"otis": {
"code": "Wouter Van Wageningen",
"description": "A FreeSewing pattern for a baby romper",
"design": "Wouter Van Wageningen",
"difficulty": 2,
"lab": true,
"org": true,
"tags": [],
"techniques": []
},
2023-05-05 19:56:51 +02:00
"paco": {
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for summer pants",
2023-05-05 19:56:51 +02:00
"design": "Joost De Cock",
"difficulty": 3,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"bottoms",
"trousers"
],
"techniques": [
"elastic",
"curvedSeam",
"pocket",
"weltPocket",
"hem"
]
},
"penelope": {
2023-05-05 19:56:51 +02:00
"code": "Wouter Van Wageningen",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a pencil skirt",
2023-05-05 19:56:51 +02:00
"design": "Wouter Van Wageningen",
"difficulty": 3,
2023-10-05 22:59:36 +00:00
"lab": true,
"org": true,
"tags": [
"bottoms",
"skirts"
],
"techniques": [
"hem",
"curvedSeam",
"precision",
"zipper"
]
2023-05-05 19:56:51 +02:00
},
"plugintest": {
2023-10-05 22:59:36 +00:00
"code": "Joost De Cock",
2023-05-05 19:56:51 +02:00
"description": "A FreeSewing pattern to test (y)our plugins",
"lab": true,
2023-10-05 22:59:36 +00:00
"org": false
2023-05-05 19:56:51 +02:00
},
"rendertest": {
2023-10-05 22:59:36 +00:00
"code": "Joost De Cock",
2023-05-05 19:56:51 +02:00
"description": "A FreeSewing pattern to test (y)our render engine our CSS",
"lab": true,
2023-10-05 22:59:36 +00:00
"org": false
2023-05-05 19:56:51 +02:00
},
"sandy": {
2023-10-05 22:59:36 +00:00
"code": [
"Erica Alcusa Sáez",
"Joost De Cock"
],
2023-05-05 19:56:51 +02:00
"description": "A FreeSewing pattern for a circle skirt",
"design": "Erica Alcusa Sáez",
"difficulty": 3,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"bottoms",
"skirts"
],
"techniques": [
"curvedSeam",
"button",
"hem"
]
},
2023-07-08 14:22:35 -04:00
"shelly": {
"code": "Thrunic",
2023-12-13 23:04:03 +00:00
"description": "A FreeSewing pattern for a raglan shirt, perfect for swimshirts",
2023-07-08 14:22:35 -04:00
"design": "Thrunic",
"difficulty": 2,
2023-12-13 23:04:03 +00:00
"lab": true,
"org": true,
"tags": [
"tops",
"swimwear"
],
"techniques": [
"hem",
"stretch",
"curvedSeam",
"raglanSleeve"
]
2023-07-08 14:22:35 -04:00
},
2023-10-05 22:59:36 +00:00
"shin": {
2023-05-05 19:56:51 +02:00
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for swim trunks",
2023-05-05 19:56:51 +02:00
"design": "Joost De Cock",
"difficulty": 2,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"bottoms",
"swimwear"
],
"techniques": [
"hem",
"stretch",
"curvedSeam",
"elastic"
]
},
"simon": {
2023-05-05 19:56:51 +02:00
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a button down shirt",
2023-05-05 19:56:51 +02:00
"design": "Joost De Cock",
"difficulty": 4,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"tops"
],
"techniques": [
"hem",
"button",
"interfacing",
"curvedSeam",
"flatFelledSeam",
"flatSleeve"
]
},
"simone": {
2023-05-05 19:56:51 +02:00
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a button down shirt (Simone = Simon for people with breasts)",
2023-05-05 19:56:51 +02:00
"design": "Joost De Cock",
"difficulty": 4,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"tops"
],
"techniques": [
"hem",
"button",
"interfacing",
"curvedSeam",
"flatFelledSeam",
"flatSleeve"
]
2023-05-05 19:56:51 +02:00
},
2023-10-02 18:16:37 +02:00
"skully": {
"code": "Wouter Van Wageningen",
2023-12-13 23:04:03 +00:00
"description": "A FreeSewing pattern for skully, our logo, a plushy toy",
2023-10-02 18:16:37 +02:00
"design": "Wouter Van Wageningen",
2023-10-05 20:16:57 +00:00
"difficulty": 4,
2023-10-15 20:52:02 +02:00
"lab": true,
"org": true,
2023-12-13 23:04:03 +00:00
"tags": [
"accessories",
"toys"
],
"techniques": [
"curvedSeam",
"precision"
]
2023-10-02 18:16:37 +02:00
},
2023-05-05 19:56:51 +02:00
"sven": {
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a straightforward sweater",
2023-05-05 19:56:51 +02:00
"design": "Joost De Cock",
"difficulty": 3,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"tops"
],
"techniques": [
"curvedSeam",
"flatSleeve",
"ribbing"
]
},
"tamiko": {
2023-05-05 19:56:51 +02:00
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a zero-waste top",
2023-05-05 19:56:51 +02:00
"design": "Joost De Cock",
"difficulty": 1,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"tops"
],
"techniques": [
"curvedSeam"
]
},
"teagan": {
2023-05-05 19:56:51 +02:00
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a T-shirt",
2023-05-05 19:56:51 +02:00
"design": "Joost De Cock",
"difficulty": 2,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"tops"
],
"techniques": [
"curvedSeam",
"hem",
"flatSleeve",
"knitBand"
]
},
"tiberius": {
2023-05-05 19:56:51 +02:00
"code": "Rika Tamaike",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a tunica, a historical Roman tunic",
2023-05-05 19:56:51 +02:00
"design": "Rika Tamaike",
"difficulty": 1,
2023-10-05 22:59:36 +00:00
"lab": true,
"org": true,
"tags": [
"tops",
"historical"
],
"techniques": []
2023-05-05 19:56:51 +02:00
},
"titan": {
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a unisex trouser block",
"design": [
"Debra Bean",
"Joost De Cock"
],
2023-05-05 19:56:51 +02:00
"difficulty": 3,
2023-10-05 22:59:36 +00:00
"lab": true,
"org": true,
"tags": [
"blocks",
"bottoms"
],
"techniques": []
2023-05-05 19:56:51 +02:00
},
"trayvon": {
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a tie",
2023-05-05 19:56:51 +02:00
"design": "Joost De Cock",
"difficulty": 2,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"accessories"
],
"techniques": [
"precision",
"lining"
]
},
2023-11-10 04:58:16 +00:00
"tristan": {
"code": "Wouter van Wageningen",
2023-11-26 21:16:20 +00:00
"description": "A FreeSewing pattern for a fitted top with prince(ss) seams",
2023-11-10 04:58:16 +00:00
"design": "Natalia Sayang",
"difficulty": 3,
"lab": true,
"org": true,
"tags": [
"tops"
],
"techniques": [
"curvedSeam",
2023-11-10 04:58:16 +00:00
"precision"
]
},
2023-10-05 22:59:36 +00:00
"uma": {
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a basic, highly-customizable underwear pattern",
"design": "Joost De Cock",
2023-05-05 19:56:51 +02:00
"difficulty": 1,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"bottoms",
"underwear"
],
"techniques": [
"elastic",
"curvedSeam"
]
},
"wahid": {
2023-05-05 19:56:51 +02:00
"code": "Joost De Cock",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a classic fitted waistcoat",
2023-05-05 19:56:51 +02:00
"design": "Joost De Cock",
"difficulty": 4,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"tops"
],
"techniques": [
"curvedSeam",
"hem",
"interfacing",
"lining",
"weltPocket",
"button"
]
},
"walburga": {
2023-05-05 19:56:51 +02:00
"code": "Rika Tamaike",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a wappenrock (tabard/surcoat), a historical European/medieval (ish) garment",
2023-05-05 19:56:51 +02:00
"design": "Rika Tamaike",
"difficulty": 1,
"lab": true,
"org": true,
2023-10-05 22:59:36 +00:00
"tags": [
"bottoms",
"historical"
],
"techniques": [
"hem"
]
},
"waralee": {
2023-05-05 19:56:51 +02:00
"code": "Wouter Van Wageningen",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for wrap pants",
2023-05-05 19:56:51 +02:00
"design": "Wouter Van Wageningen",
"difficulty": 2,
2023-10-05 22:59:36 +00:00
"lab": true,
"org": true,
"tags": [
"bottoms",
"trousers"
],
2023-12-13 23:04:03 +00:00
"techniques": [
"curvedSeam",
"hem",
"weltPocket"
]
2023-05-05 19:56:51 +02:00
},
"yuri": {
"code": "Hellgy",
2023-10-05 22:59:36 +00:00
"description": "A FreeSewing pattern for a fancy zipless sweater based on the Huey hoodie",
2023-05-05 19:56:51 +02:00
"design": "Biou",
"difficulty": 3,
2023-10-05 22:59:36 +00:00
"lab": true,
"org": true,
"tags": [
"tops"
],
"techniques": [
"curvedSeam",
"flatSleeve",
"hem",
"button"
]
2022-06-17 12:02:09 +02:00
}
2022-08-26 14:45:51 +02:00
}