1
0
Fork 0
freesewing/packages/new-design/package.json

69 lines
1.9 KiB
JSON
Raw Normal View History

{
"name": "@freesewing/new-design",
release: v3.2.0 - Added: - core: - Added the `Path.combine()` method - The `Path.join()` method is now variadic - The `Path.length()` now takes an parameter to include move operations in the length calculation - lumina: - Initial release - lumira: - Initial release - plugin-annotations: - The `title` macro now takes a `notes` and `classes.notes` as its config, allowing you to add notes - The `classes.cutlist` config is removed from the title plugin, cutlist info is now included as notes - plugin-i18n: - This plugin now supports translation of nested arrays of strings, giving you more flexibility to concatenate translated parts of strings - react-components: - This Pattern component now supports translation of nested arrays of strings, giving you more flexibility to concatenate translated parts of strings - sandy: - Added a new *panels* option - tristan: - Inital release - Deprecated: - core: - Calling `Path.join` with a second parameter to indicate that the resulting paths most be closed is now deprecated and will be removed in FreeSewing v4. - Fixed: - brian: - Take biceps ease into account when calculating armhole depth - carlton: - Fixed a stray seam allowance path on the collar - charlie: - The back pocket welt (4) and front pocket facing (8) incorrectly indicated to cut 2 instead of 4 in the cutlist. Fixes #5791 - hugo: - Fix issue that crashed the design when complete is off. Fixes #6006 - Base pocket opening on pocket height, rather than width of the garment. Fixes #6004 - Removed: - plugin-annotations: - The `classes.cutlist` config is removed from the title plugin, cutlist info is now included as notes Shout-out to @woutervdub and @benjamesben for their many contributotions to this v3.2 release :pray:
2024-02-11 13:43:07 +01:00
"version": "3.2.0",
"description": "Initializer package for a new FreeSewing design: npx @freesewing/new-design",
"author": "Joost De Cock <joost@joost.at> (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
"repository": "github:freesewing/freesewing",
"license": "MIT",
"bugs": {
"url": "https://github.com/freesewing/freesewing/issues"
},
"funding": {
"type": "individual",
"url": "https://freesewing.org/patrons/join"
},
"keywords": [
"freesewing",
"freesewing"
],
"type": "module",
"scripts": {
2022-12-30 16:38:19 +01:00
"build": "node build.mjs",
"build:all": "yarn build",
"clean": "rimraf dist",
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
"lab": "cd ../../sites/lab && yarn start",
"tips": "node ../../scripts/help.mjs",
2022-09-28 21:06:47 +02:00
"lint": "npx eslint 'lib/*.mjs'",
"i18n-only": "SITE=\"new-design/shared\" node --conditions=internal ../../sites/shared/prebuild/i18n-only.mjs",
"prebuild": "node --conditions=internal ./prebuild.mjs",
2022-12-30 16:38:19 +01:00
"wbuild": "node build.mjs",
"prewbuild": "node --conditions=internal ./prebuild.mjs",
"wbuild:all": "yarn wbuild",
"prebuild:all": "yarn prebuild",
"prewbuild:all": "yarn prewbuild"
},
"peerDependencies": {},
"dependencies": {
"axios": "1.6.7",
2023-10-13 17:19:40 +02:00
"chalk": "5.3.0",
2023-10-04 17:55:54 +02:00
"execa": "8.0.1",
2022-12-23 15:25:39 +01:00
"mustache": "4.2.0",
"ora": "8.0.1",
2022-12-23 15:25:39 +01:00
"prompts": "2.4.2",
2022-12-28 16:15:01 +01:00
"recursive-readdir": "2.2.3"
},
"devDependencies": {},
"files": [
"README.md",
2022-06-22 15:59:01 +02:00
"package.json",
"lib/**/*",
"shared/**/*",
"templates/**/*",
2022-06-22 15:59:13 +02:00
"index.mjs",
"package.json",
"data.mjs"
],
"publishConfig": {
"access": "public",
release: v3.2.0 - Added: - core: - Added the `Path.combine()` method - The `Path.join()` method is now variadic - The `Path.length()` now takes an parameter to include move operations in the length calculation - lumina: - Initial release - lumira: - Initial release - plugin-annotations: - The `title` macro now takes a `notes` and `classes.notes` as its config, allowing you to add notes - The `classes.cutlist` config is removed from the title plugin, cutlist info is now included as notes - plugin-i18n: - This plugin now supports translation of nested arrays of strings, giving you more flexibility to concatenate translated parts of strings - react-components: - This Pattern component now supports translation of nested arrays of strings, giving you more flexibility to concatenate translated parts of strings - sandy: - Added a new *panels* option - tristan: - Inital release - Deprecated: - core: - Calling `Path.join` with a second parameter to indicate that the resulting paths most be closed is now deprecated and will be removed in FreeSewing v4. - Fixed: - brian: - Take biceps ease into account when calculating armhole depth - carlton: - Fixed a stray seam allowance path on the collar - charlie: - The back pocket welt (4) and front pocket facing (8) incorrectly indicated to cut 2 instead of 4 in the cutlist. Fixes #5791 - hugo: - Fix issue that crashed the design when complete is off. Fixes #6006 - Base pocket opening on pocket height, rather than width of the garment. Fixes #6004 - Removed: - plugin-annotations: - The `classes.cutlist` config is removed from the title plugin, cutlist info is now included as notes Shout-out to @woutervdub and @benjamesben for their many contributotions to this v3.2 release :pray:
2024-02-11 13:43:07 +01:00
"tag": "latest"
},
"engines": {
2024-02-11 17:31:52 +01:00
"node": ">= 18.17.0 <22"
},
"bin": {
2022-10-08 04:02:56 +02:00
"new-design": "./index.mjs"
}
}