1
0
Fork 0
freesewing/sites/lab/package.json

76 lines
2.3 KiB
JSON
Raw Normal View History

{
2022-12-17 16:48:36 +01:00
"name": "@freesewing/lab",
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",
2022-12-17 16:48:36 +01:00
"description": "FreeSewing website to test various patterns",
"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"
},
2022-01-23 14:05:19 +01:00
"scripts": {
"build": "next build",
2022-12-17 16:48:36 +01:00
"cibuild": "yarn build",
"dev": "next dev -p 8000",
"develop": "next dev -p 8000",
"i18n": "SITE=lab node --conditions=internal ../shared/prebuild/i18n-only.mjs",
"lint": "next lint",
"prebuild": "node --conditions=internal --experimental-json-modules ./prebuild.mjs",
"start": "cd ../org && yarn prebuild && cd - && yarn prebuild && yarn dev",
"wbuild": "next build",
"prewbuild": "node --conditions=internal --experimental-json-modules ./prebuild.mjs"
},
2022-12-17 16:48:36 +01:00
"peerDependencies": {},
"dependencies": {
2023-10-30 17:46:39 +01:00
"@mdx-js/mdx": "^3.0.0",
"@mdx-js/react": "^3.0.0",
2022-12-17 16:48:36 +01:00
"@mdx-js/runtime": "2.0.0-next.9",
"@tailwindcss/typography": "0.5.10",
"algoliasearch": "4.22.1",
2022-12-17 16:48:36 +01:00
"d3-dispatch": "3.0.1",
"d3-drag": "3.0.0",
"d3-selection": "3.0.0",
2024-02-11 13:30:18 +01:00
"daisyui": "4.6.1",
"i18next": "23.8.1",
2022-12-17 16:48:36 +01:00
"lodash.get": "4.4.2",
"lodash.orderby": "4.6.0",
"lodash.set": "4.3.2",
"next": "14.1.0",
"next-i18next": "15.2.0",
"ora": "8.0.1",
2022-12-17 16:48:36 +01:00
"react": "18.2.0",
"react-copy-to-clipboard": "5.1.0",
2024-02-11 13:30:18 +01:00
"react-hotkeys-hook": "4.4.4",
"react-i18next": "14.0.1",
"react-instantsearch-dom": "6.40.4",
"react-swipeable": "7.0.1",
"react-timeago": "7.2.0",
"rehype-autolink-headings": "7.1.0",
"rehype-highlight": "7.0.0",
2023-10-04 17:55:54 +02:00
"rehype-sanitize": "6.0.0",
"rehype-slug": "6.0.0",
"rehype-stringify": "10.0.0",
"remark-copy-linked-files": "git+https://git@github.com/joostdecock/remark-copy-linked-files",
2023-10-30 17:46:39 +01:00
"remark-gfm": "4.0.0",
"remark-mdx-frontmatter": "4.0.0"
},
"devDependencies": {
"autoprefixer": "10.4.17",
2022-12-17 16:48:36 +01:00
"js-yaml": "4.1.0",
2024-02-11 13:30:18 +01:00
"postcss": "8.4.33",
2022-12-17 16:48:36 +01:00
"remark-extract-frontmatter": "3.2.0",
2023-10-30 17:46:39 +01:00
"remark-mdx-frontmatter": "4.0.0",
"tailwindcss": "3.4.1",
2022-12-17 16:48:36 +01:00
"yaml-loader": "0.8.0"
},
"engines": {
2024-02-11 17:31:52 +01:00
"node": ">= 18.17.0 <22"
2022-01-23 14:05:19 +01:00
},
2022-12-17 16:48:36 +01:00
"private": true
}