ant-design/package.json

344 lines
12 KiB
JSON
Raw Normal View History

2015-05-07 18:50:36 +08:00
{
2015-06-02 15:41:43 +08:00
"name": "antd",
"version": "5.21.0",
2019-05-08 16:27:37 +08:00
"description": "An enterprise-class UI design language and React components implementation",
"license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/ant-design"
},
"homepage": "https://ant.design",
"repository": {
"type": "git",
"url": "https://github.com/ant-design/ant-design"
},
"bugs": {
"url": "https://github.com/ant-design/ant-design/issues"
},
2015-07-15 12:07:11 +08:00
"keywords": [
2015-07-17 13:58:35 +08:00
"ant",
"component",
"components",
"design",
2015-07-17 13:58:35 +08:00
"framework",
"frontend",
"react",
"react-component",
"ui"
2015-07-17 16:24:00 +08:00
],
"sideEffects": false,
"main": "lib/index.js",
"module": "es/index.js",
"unpkg": "dist/antd.min.js",
"typings": "es/index.d.ts",
"files": [
"BUG_VERSIONS.json",
"dist",
"es",
"lib",
"locale"
],
"scripts": {
"api-collection": "antd-tools run api-collection",
"authors": "tsx scripts/generate-authors.ts",
"build": "npm run compile && NODE_OPTIONS='--max-old-space-size=4096' npm run dist",
"changelog": "npm run lint:changelog && tsx scripts/print-changelog.ts",
"check-commit": "tsx scripts/check-commit.ts",
"clean": "antd-tools run clean && rimraf es lib coverage locale dist report.html artifacts.zip oss-artifacts.zip",
"clean:lockfiles": "rimraf package-lock.json yarn.lock",
"precompile": "npm run prestart",
"compile": "npm run clean && antd-tools run compile",
"predeploy": "antd-tools run clean && npm run site && cp CNAME _site && npm run test:site",
"deploy": "gh-pages -d _site -b gh-pages -f",
"deploy:china-mirror": "git checkout gh-pages && git pull origin gh-pages && git push git@gitee.com:ant-design/ant-design.git gh-pages -f",
"predist": "npm run version && npm run token:statistic && npm run token:meta",
"dist": "antd-tools run dist",
"format": "biome format --write .",
"install-react-16": "npm i --no-save --legacy-peer-deps react@16 react-dom@16 @testing-library/react@12",
"install-react-17": "npm i --no-save --legacy-peer-deps react@17 react-dom@17 @testing-library/react@12",
"bun-install-react-16": "bun remove react react-dom @testing-library/react && bun add --no-save react@16 react-dom@16 @testing-library/react@12",
"bun-install-react-17": "bun remove react react-dom @testing-library/react && bun add --no-save react@17 react-dom@17 @testing-library/react@12",
"prelint": "dumi setup",
"lint": "npm run version && npm run tsc && npm run lint:script && npm run lint:biome && npm run lint:md && npm run lint:style && npm run lint:changelog",
"lint:changelog": "tsx scripts/generate-component-changelog.ts",
"lint:deps": "antd-tools run deps-lint",
"lint:md": "remark . -f -q",
"lint:script": "eslint . --cache",
"lint:biome": "biome lint",
"lint:style": "tsx scripts/check-cssinjs.tsx",
"prepare": "is-ci || husky && dumi setup",
"prepublishOnly": "tsx ./scripts/pre-publish.ts",
"prettier": "prettier -c --write . --cache",
"prettier-import-sort": "npm run prettier -- --plugin=@ianvs/prettier-plugin-sort-imports",
"biome": "biome check --write",
"pub": "echo 'Please use `npm publish` instead.'",
"postpublish": "tsx scripts/post-publish.ts",
"presite": "npm run prestart",
2024-07-03 10:43:18 +08:00
"site": "npm i --no-save --legacy-peer-deps react@18.3.0-canary-c3048aab4-20240326 react-dom@18.3.0-canary-c3048aab4-20240326 && dumi build && cp .surgeignore _site",
"size-limit": "size-limit",
"sort:api-table": "antd-tools run sort-api-table",
"sort:package-json": "npx sort-package-json",
"prestart": "npm run version && npm run token:statistic && npm run token:meta && npm run lint:changelog",
"start": "tsx ./scripts/set-node-options.ts cross-env PORT=8001 dumi dev",
"pretest": "npm run version",
"test": "jest --config .jest.js --no-cache",
"test:all": "sh -e ./scripts/test-all.sh",
"test:dekko": "node ./tests/dekko/index.test.js",
"test:image": "jest --config .jest.image.js --no-cache -i -u --forceExit",
"test:node": "npm run version && jest --config .jest.node.js --no-cache",
"test:package-diff": "antd-tools run package-diff",
"test:site": "jest --config .jest.site.js",
"test:site-update": "npm run site && npm run test:site -- -u",
"test:update": "jest --config .jest.js --no-cache -u",
"test:visual-regression": "tsx scripts/visual-regression/build.ts",
"token:meta": "tsx scripts/generate-token-meta.ts",
"token:statistic": "tsx scripts/collect-token-statistic.ts",
"tsc": "tsc --noEmit",
"tsc:old": "tsc --noEmit -p tsconfig-old-react.json",
"version": "tsx scripts/generate-version.ts"
},
"browserslist": [
"defaults"
],
2015-05-07 18:50:36 +08:00
"dependencies": {
"@ant-design/colors": "^7.1.0",
2024-09-16 17:23:52 +08:00
"@ant-design/cssinjs": "^1.21.1",
"@ant-design/cssinjs-utils": "^1.1.0",
"@ant-design/icons": "^5.5.1",
"@ant-design/react-slick": "~1.1.2",
2024-09-16 17:23:52 +08:00
"@babel/runtime": "^7.25.6",
"@ctrl/tinycolor": "^3.6.1",
"@rc-component/color-picker": "~2.0.1",
"@rc-component/mutate-observer": "^1.1.0",
"@rc-component/qrcode": "~1.0.0",
"@rc-component/tour": "~1.15.1",
"@rc-component/trigger": "^2.2.3",
"classnames": "^2.5.1",
"copy-to-clipboard": "^3.3.3",
"dayjs": "^1.11.11",
2024-09-03 22:07:59 +08:00
"rc-cascader": "~3.28.1",
"rc-checkbox": "~3.3.0",
"rc-collapse": "~3.8.0",
"rc-dialog": "~9.6.0",
"rc-drawer": "~7.2.0",
"rc-dropdown": "~4.2.0",
2024-08-14 13:47:49 +08:00
"rc-field-form": "~2.4.0",
"rc-image": "~7.11.0",
"rc-input": "~1.6.3",
"rc-input-number": "~9.2.0",
2024-09-16 17:23:52 +08:00
"rc-mentions": "~2.16.1",
"rc-menu": "~9.15.1",
"rc-motion": "^2.9.3",
"rc-notification": "~5.6.1",
"rc-pagination": "~4.3.0",
"rc-picker": "~4.6.14",
feat: steps support for circular progress bar (#47940) * feat: steps support for circular progress bar * Update components/progress/index.zh-CN.md Co-authored-by: afc163 <afc163@gmail.com> Signed-off-by: lijianan <574980606@qq.com> * Update components/progress/index.en-US.md Signed-off-by: lijianan <574980606@qq.com> * Update components/progress/index.en-US.md Signed-off-by: lijianan <574980606@qq.com> * Update components/progress/index.zh-CN.md Signed-off-by: lijianan <574980606@qq.com> * Update components/progress/index.zh-CN.md Signed-off-by: lijianan <574980606@qq.com> * Update components/progress/index.en-US.md Signed-off-by: lijianan <574980606@qq.com> * Update components/progress/progress.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/progress/__tests__/index.test.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/progress/demo/circle-steps.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/progress/index.en-US.md Signed-off-by: lijianan <574980606@qq.com> * Update components/progress/index.en-US.md Signed-off-by: lijianan <574980606@qq.com> * Update components/progress/index.zh-CN.md Signed-off-by: lijianan <574980606@qq.com> * Update components/progress/index.zh-CN.md Signed-off-by: lijianan <574980606@qq.com> * Update circle-steps.tsx * Update components/progress/progress.tsx Signed-off-by: lijianan <574980606@qq.com> * Update components/progress/index.zh-CN.md Signed-off-by: lijianan <574980606@qq.com> * Update components/progress/index.zh-CN.md Signed-off-by: lijianan <574980606@qq.com> * Update components/progress/index.en-US.md Signed-off-by: lijianan <574980606@qq.com> * Update components/progress/index.en-US.md Signed-off-by: lijianan <574980606@qq.com> * Update package.json * Update components/progress/demo/circle-steps.md Co-authored-by: afc163 <afc163@gmail.com> Signed-off-by: lijianan <574980606@qq.com> --------- Signed-off-by: lijianan <574980606@qq.com> Co-authored-by: lijianan <574980606@qq.com> Co-authored-by: afc163 <afc163@gmail.com>
2024-03-24 18:30:53 +08:00
"rc-progress": "~4.0.0",
"rc-rate": "~2.13.0",
2023-10-20 20:58:42 +08:00
"rc-resize-observer": "^1.4.0",
"rc-segmented": "~2.5.0",
"rc-select": "~14.15.2",
"rc-slider": "~11.1.6",
2023-07-19 13:39:26 +08:00
"rc-steps": "~6.0.1",
"rc-switch": "~4.1.0",
2024-09-16 17:23:52 +08:00
"rc-table": "~7.47.5",
"rc-tabs": "~15.2.0",
"rc-textarea": "~1.8.2",
"rc-tooltip": "~6.2.1",
"rc-tree": "~5.9.0",
"rc-tree-select": "~5.23.0",
"rc-upload": "~4.8.1",
"rc-util": "^5.43.0",
"scroll-into-view-if-needed": "^3.1.0",
"throttle-debounce": "^5.0.2"
2015-05-21 20:36:13 +08:00
},
"devDependencies": {
"@ant-design/compatible": "^5.1.3",
"@ant-design/happy-work-theme": "^1.0.0",
"@ant-design/tools": "^18.0.2",
"@antfu/eslint-config": "^3.0.0",
chore(deps-dev): bump the dev-dependencies group with 41 updates (#46657) * chore(deps-dev): bump the dev-dependencies group with 41 updates Updates the requirements on [@antv/g6](https://github.com/antvis/g6), [@babel/eslint-plugin](https://github.com/babel/babel/tree/HEAD/eslint/babel-eslint-plugin), [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome), [@emotion/react](https://github.com/emotion-js/emotion), [@size-limit/file](https://github.com/ai/size-limit), [@testing-library/jest-dom](https://github.com/testing-library/jest-dom), [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest), [@types/jest-axe](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest-axe), [@types/jest-image-snapshot](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest-image-snapshot), [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [@types/qs](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/qs), [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react), [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom), [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser), [ali-oss](https://github.com/ali-sdk/ali-oss), [antd-img-crop](https://github.com/nanxiaobei/antd-img-crop), [antd-style](https://github.com/ant-design/antd-style), [chalk](https://github.com/chalk/chalk), [dumi-plugin-color-chunk](https://github.com/Wxh16144/dumi-plugin-color-chunk), [eslint](https://github.com/eslint/eslint), [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier), [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import), [fs-extra](https://github.com/jprichardson/node-fs-extra), [gh-pages](https://github.com/tschaub/gh-pages), [jest-image-snapshot](https://github.com/americanexpress/jest-image-snapshot), [jest-puppeteer](https://github.com/argos-ci/jest-puppeteer/tree/HEAD/packages/jest-puppeteer), [jsdom](https://github.com/jsdom/jsdom), [lint-staged](https://github.com/okonet/lint-staged), [open](https://github.com/sindresorhus/open), [prettier](https://github.com/prettier/prettier), [prettier-plugin-jsdoc](https://github.com/hosseinmd/prettier-plugin-jsdoc), [puppeteer](https://github.com/puppeteer/puppeteer), [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom), [regenerator-runtime](https://github.com/facebook/regenerator), [sharp](https://github.com/lovell/sharp), [size-limit](https://github.com/ai/size-limit), [stylelint](https://github.com/stylelint/stylelint), [terser](https://github.com/terser/terser), [tsx](https://github.com/privatenumber/tsx) and [typescript](https://github.com/Microsoft/TypeScript) to permit the latest version. Updates `@antv/g6` to 4.8.24 - [Release notes](https://github.com/antvis/g6/releases) - [Changelog](https://github.com/antvis/G6/blob/master/CHANGELOG.md) - [Commits](https://github.com/antvis/g6/commits) Updates `@babel/eslint-plugin` to 7.23.5 - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.23.5/eslint/babel-eslint-plugin) Updates `@biomejs/biome` to 1.4.1 - [Release notes](https://github.com/biomejs/biome/releases) - [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG.md) - [Commits](https://github.com/biomejs/biome/commits/cli/v1.4.1/packages/@biomejs/biome) Updates `@emotion/react` to 11.11.3 - [Release notes](https://github.com/emotion-js/emotion/releases) - [Changelog](https://github.com/emotion-js/emotion/blob/main/CHANGELOG.md) - [Commits](https://github.com/emotion-js/emotion/compare/@emotion/react@11.11.1...@emotion/react@11.11.3) Updates `@size-limit/file` to 11.0.1 - [Changelog](https://github.com/ai/size-limit/blob/main/CHANGELOG.md) - [Commits](https://github.com/ai/size-limit/compare/11.0.0...11.0.1) Updates `@testing-library/jest-dom` to 6.1.5 - [Release notes](https://github.com/testing-library/jest-dom/releases) - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md) - [Commits](https://github.com/testing-library/jest-dom/compare/v6.1.4...v6.1.5) Updates `@types/jest` to 29.5.11 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) Updates `@types/jest-axe` to 3.5.9 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest-axe) Updates `@types/jest-image-snapshot` to 6.4.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest-image-snapshot) Updates `@types/node` to 20.10.5 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `@types/qs` to 6.9.11 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/qs) Updates `@types/react` to 18.2.45 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` to 18.2.18 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `@typescript-eslint/eslint-plugin` to 6.16.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.16.0/packages/eslint-plugin) Updates `@typescript-eslint/parser` to 6.16.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.16.0/packages/parser) Updates `ali-oss` to 6.19.0 - [Release notes](https://github.com/ali-sdk/ali-oss/releases) - [Changelog](https://github.com/ali-sdk/ali-oss/blob/master/CHANGELOG.md) - [Commits](https://github.com/ali-sdk/ali-oss/compare/v6.18.1...v6.19.0) Updates `antd-img-crop` to 4.18.0 - [Commits](https://github.com/nanxiaobei/antd-img-crop/commits) Updates `antd-style` to 3.6.1 - [Release notes](https://github.com/ant-design/antd-style/releases) - [Changelog](https://github.com/ant-design/antd-style/blob/master/CHANGELOG.md) - [Commits](https://github.com/ant-design/antd-style/compare/v3.5.2...v3.6.1) Updates `chalk` from 4.1.2 to 5.3.0 - [Release notes](https://github.com/chalk/chalk/releases) - [Commits](https://github.com/chalk/chalk/compare/v4.1.2...v5.3.0) Updates `dumi-plugin-color-chunk` to 1.1.0 - [Release notes](https://github.com/Wxh16144/dumi-plugin-color-chunk/releases) - [Changelog](https://github.com/Wxh16144/dumi-plugin-color-chunk/blob/master/CHANGELOG.md) - [Commits](https://github.com/Wxh16144/dumi-plugin-color-chunk/compare/v1.0.4...v1.1.0) Updates `eslint` to 8.56.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.54.0...v8.56.0) Updates `eslint-config-prettier` to 9.1.0 - [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/eslint-config-prettier/compare/v9.0.0...v9.1.0) Updates `eslint-plugin-import` to 2.29.1 - [Release notes](https://github.com/import-js/eslint-plugin-import/releases) - [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md) - [Commits](https://github.com/import-js/eslint-plugin-import/compare/v2.29.0...v2.29.1) Updates `fs-extra` to 11.2.0 - [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md) - [Commits](https://github.com/jprichardson/node-fs-extra/compare/11.1.1...11.2.0) Updates `gh-pages` to 6.1.1 - [Release notes](https://github.com/tschaub/gh-pages/releases) - [Changelog](https://github.com/tschaub/gh-pages/blob/main/changelog.md) - [Commits](https://github.com/tschaub/gh-pages/compare/v6.1.0...v6.1.1) Updates `jest-image-snapshot` to 6.4.0 - [Release notes](https://github.com/americanexpress/jest-image-snapshot/releases) - [Changelog](https://github.com/americanexpress/jest-image-snapshot/blob/main/CHANGELOG.md) - [Commits](https://github.com/americanexpress/jest-image-snapshot/compare/v6.2.0...v6.4.0) Updates `jest-puppeteer` to 9.0.2 - [Release notes](https://github.com/argos-ci/jest-puppeteer/releases) - [Changelog](https://github.com/argos-ci/jest-puppeteer/blob/main/packages/jest-puppeteer/CHANGELOG.md) - [Commits](https://github.com/argos-ci/jest-puppeteer/commits/v9.0.2/packages/jest-puppeteer) Updates `jsdom` to 23.0.1 - [Release notes](https://github.com/jsdom/jsdom/releases) - [Changelog](https://github.com/jsdom/jsdom/blob/main/Changelog.md) - [Commits](https://github.com/jsdom/jsdom/compare/23.0.0...23.0.1) Updates `lint-staged` to 15.2.0 - [Release notes](https://github.com/okonet/lint-staged/releases) - [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md) - [Commits](https://github.com/okonet/lint-staged/compare/v15.1.0...v15.2.0) Updates `open` to 10.0.1 - [Release notes](https://github.com/sindresorhus/open/releases) - [Commits](https://github.com/sindresorhus/open/compare/v10.0.0...v10.0.1) Updates `prettier` to 3.1.1 - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.1.0...3.1.1) Updates `prettier-plugin-jsdoc` to 1.3.0 - [Release notes](https://github.com/hosseinmd/prettier-plugin-jsdoc/releases) - [Changelog](https://github.com/hosseinmd/prettier-plugin-jsdoc/blob/master/CHANGELOG.md) - [Commits](https://github.com/hosseinmd/prettier-plugin-jsdoc/compare/v1.1.1...v1.3.0) Updates `puppeteer` to 21.6.1 - [Release notes](https://github.com/puppeteer/puppeteer/releases) - [Changelog](https://github.com/puppeteer/puppeteer/blob/main/release-please-config.json) - [Commits](https://github.com/puppeteer/puppeteer/compare/puppeteer-v21.5.2...puppeteer-v21.6.1) Updates `react-router-dom` to 6.21.1 - [Release notes](https://github.com/remix-run/react-router/releases) - [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md) - [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.21.1/packages/react-router-dom) Updates `regenerator-runtime` to 0.14.1 - [Release notes](https://github.com/facebook/regenerator/releases) - [Commits](https://github.com/facebook/regenerator/compare/regenerator-runtime@0.14.0...regenerator-runtime@0.14.1) Updates `sharp` to 0.33.1 - [Release notes](https://github.com/lovell/sharp/releases) - [Changelog](https://github.com/lovell/sharp/blob/main/docs/changelog.md) - [Commits](https://github.com/lovell/sharp/compare/v0.33.0...v0.33.1) Updates `size-limit` to 11.0.1 - [Changelog](https://github.com/ai/size-limit/blob/main/CHANGELOG.md) - [Commits](https://github.com/ai/size-limit/compare/11.0.0...11.0.1) Updates `stylelint` to 16.1.0 - [Release notes](https://github.com/stylelint/stylelint/releases) - [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md) - [Commits](https://github.com/stylelint/stylelint/compare/16.0.0...16.1.0) Updates `terser` to 5.26.0 - [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md) - [Commits](https://github.com/terser/terser/compare/v5.24.0...v5.26.0) Updates `tsx` to 4.7.0 - [Release notes](https://github.com/privatenumber/tsx/releases) - [Changelog](https://github.com/privatenumber/tsx/blob/develop/release.config.cjs) - [Commits](https://github.com/privatenumber/tsx/compare/v4.6.0...v4.7.0) Updates `typescript` to 5.3.3 - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Commits](https://github.com/Microsoft/TypeScript/compare/v5.3.2...v5.3.3) --- updated-dependencies: - dependency-name: "@antv/g6" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@babel/eslint-plugin" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@biomejs/biome" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@emotion/react" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@size-limit/file" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@testing-library/jest-dom" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/jest" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/jest-axe" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/jest-image-snapshot" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/node" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/qs" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/react" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/react-dom" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: ali-oss dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: antd-img-crop dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: antd-style dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: chalk dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: dumi-plugin-color-chunk dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint-config-prettier dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint-plugin-import dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: fs-extra dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: gh-pages dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: jest-image-snapshot dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: jest-puppeteer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: jsdom dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: lint-staged dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: open dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: prettier dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: prettier-plugin-jsdoc dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: puppeteer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: react-router-dom dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: regenerator-runtime dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: sharp dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: size-limit dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: stylelint dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: terser dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: tsx dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: typescript dependency-type: direct:development dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Update package.json Signed-off-by: afc163 <afc163@gmail.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: afc163 <afc163@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: afc163 <afc163@gmail.com>
2023-12-27 21:45:21 +08:00
"@antv/g6": "^4.8.24",
2024-09-16 17:23:52 +08:00
"@biomejs/biome": "^1.9.1",
"@codecov/webpack-plugin": "^1.0.1",
"@codesandbox/sandpack-react": "^2.19.8",
2023-11-23 03:09:24 +08:00
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
2023-11-23 03:09:24 +08:00
"@dnd-kit/utilities": "^3.2.2",
2024-09-16 17:23:52 +08:00
"@emotion/css": "^11.13.0",
"@emotion/react": "^11.13.3",
2023-11-23 03:09:24 +08:00
"@emotion/server": "^11.11.0",
"@eslint-react/eslint-plugin": "^1.13.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@inquirer/prompts": "^6.0.1",
"@madccc/duplicate-package-checker-webpack-plugin": "^1.0.0",
2024-09-16 17:23:52 +08:00
"@microflash/rehype-figure": "^2.1.1",
chore(deps-dev): bump the dev-dependencies group with 5 updates (#48717) * chore(deps-dev): bump the dev-dependencies group with 5 updates Updates the requirements on [@babel/eslint-plugin](https://github.com/babel/babel/tree/HEAD/eslint/babel-eslint-plugin), [@npmcli/run-script](https://github.com/npm/run-script), [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser), [eslint](https://github.com/eslint/eslint) and [terser](https://github.com/terser/terser) to permit the latest version. Updates `@babel/eslint-plugin` to 7.24.5 - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.24.5/eslint/babel-eslint-plugin) Updates `@npmcli/run-script` to 8.1.0 - [Release notes](https://github.com/npm/run-script/releases) - [Changelog](https://github.com/npm/run-script/blob/main/CHANGELOG.md) - [Commits](https://github.com/npm/run-script/compare/v8.0.0...v8.1.0) Updates `@typescript-eslint/eslint-plugin` to 7.8.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.8.0/packages/eslint-plugin) Updates `@typescript-eslint/parser` to 7.8.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.8.0/packages/parser) Updates `eslint` from 8.57.0 to 9.1.1 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.57.0...v9.1.1) Updates `terser` to 5.31.0 - [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md) - [Commits](https://github.com/terser/terser/compare/v5.30.4...v5.31.0) --- updated-dependencies: - dependency-name: "@babel/eslint-plugin" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@npmcli/run-script" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: terser dependency-type: direct:development dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Update package.json Signed-off-by: lijianan <574980606@qq.com> * Update package.json Signed-off-by: lijianan <574980606@qq.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: lijianan <574980606@qq.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: lijianan <574980606@qq.com>
2024-04-30 23:17:41 +08:00
"@npmcli/run-script": "^8.1.0",
2024-09-16 17:23:52 +08:00
"@octokit/rest": "^21.0.2",
"@qixian.cs/github-contributors-list": "^2.0.2",
2024-09-16 17:23:52 +08:00
"@size-limit/file": "^11.1.5",
"@stackblitz/sdk": "^1.11.0",
2024-09-16 17:23:52 +08:00
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
chore(deps-dev): bump the dev-dependencies group with 4 updates (#46726) * chore(deps-dev): bump the dev-dependencies group with 5 updates Updates the requirements on [@testing-library/user-event](https://github.com/testing-library/user-event), [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [antd-img-crop](https://github.com/nanxiaobei/antd-img-crop), [chalk](https://github.com/chalk/chalk) and [typedoc](https://github.com/TypeStrong/TypeDoc) to permit the latest version. Updates `@testing-library/user-event` to 14.5.2 - [Release notes](https://github.com/testing-library/user-event/releases) - [Changelog](https://github.com/testing-library/user-event/blob/main/CHANGELOG.md) - [Commits](https://github.com/testing-library/user-event/compare/v14.5.1...v14.5.2) Updates `@types/node` to 20.10.6 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `antd-img-crop` to 4.21.0 - [Commits](https://github.com/nanxiaobei/antd-img-crop/commits) Updates `chalk` from 4.1.2 to 5.3.0 - [Release notes](https://github.com/chalk/chalk/releases) - [Commits](https://github.com/chalk/chalk/compare/v4.1.2...v5.3.0) Updates `typedoc` to 0.25.5 - [Release notes](https://github.com/TypeStrong/TypeDoc/releases) - [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md) - [Commits](https://github.com/TypeStrong/TypeDoc/compare/v0.25.4...v0.25.5) --- updated-dependencies: - dependency-name: "@testing-library/user-event" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/node" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: antd-img-crop dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: chalk dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: typedoc dependency-type: direct:development dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Update package.json Signed-off-by: lijianan <574980606@qq.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: lijianan <574980606@qq.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: lijianan <574980606@qq.com> Co-authored-by: afc163 <afc163@gmail.com>
2024-01-02 16:28:46 +08:00
"@testing-library/user-event": "^14.5.2",
"@types/adm-zip": "^0.5.5",
"@types/ali-oss": "^6.16.11",
"@types/cli-progress": "^3.11.6",
2023-11-23 03:09:24 +08:00
"@types/fs-extra": "^11.0.4",
"@types/gtag.js": "^0.0.20",
2023-11-23 03:09:24 +08:00
"@types/http-server": "^0.12.4",
"@types/isomorphic-fetch": "^0.0.39",
2024-09-16 17:23:52 +08:00
"@types/jest": "^29.5.13",
chore(deps-dev): bump the dev-dependencies group with 41 updates (#46657) * chore(deps-dev): bump the dev-dependencies group with 41 updates Updates the requirements on [@antv/g6](https://github.com/antvis/g6), [@babel/eslint-plugin](https://github.com/babel/babel/tree/HEAD/eslint/babel-eslint-plugin), [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome), [@emotion/react](https://github.com/emotion-js/emotion), [@size-limit/file](https://github.com/ai/size-limit), [@testing-library/jest-dom](https://github.com/testing-library/jest-dom), [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest), [@types/jest-axe](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest-axe), [@types/jest-image-snapshot](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest-image-snapshot), [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [@types/qs](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/qs), [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react), [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom), [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser), [ali-oss](https://github.com/ali-sdk/ali-oss), [antd-img-crop](https://github.com/nanxiaobei/antd-img-crop), [antd-style](https://github.com/ant-design/antd-style), [chalk](https://github.com/chalk/chalk), [dumi-plugin-color-chunk](https://github.com/Wxh16144/dumi-plugin-color-chunk), [eslint](https://github.com/eslint/eslint), [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier), [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import), [fs-extra](https://github.com/jprichardson/node-fs-extra), [gh-pages](https://github.com/tschaub/gh-pages), [jest-image-snapshot](https://github.com/americanexpress/jest-image-snapshot), [jest-puppeteer](https://github.com/argos-ci/jest-puppeteer/tree/HEAD/packages/jest-puppeteer), [jsdom](https://github.com/jsdom/jsdom), [lint-staged](https://github.com/okonet/lint-staged), [open](https://github.com/sindresorhus/open), [prettier](https://github.com/prettier/prettier), [prettier-plugin-jsdoc](https://github.com/hosseinmd/prettier-plugin-jsdoc), [puppeteer](https://github.com/puppeteer/puppeteer), [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom), [regenerator-runtime](https://github.com/facebook/regenerator), [sharp](https://github.com/lovell/sharp), [size-limit](https://github.com/ai/size-limit), [stylelint](https://github.com/stylelint/stylelint), [terser](https://github.com/terser/terser), [tsx](https://github.com/privatenumber/tsx) and [typescript](https://github.com/Microsoft/TypeScript) to permit the latest version. Updates `@antv/g6` to 4.8.24 - [Release notes](https://github.com/antvis/g6/releases) - [Changelog](https://github.com/antvis/G6/blob/master/CHANGELOG.md) - [Commits](https://github.com/antvis/g6/commits) Updates `@babel/eslint-plugin` to 7.23.5 - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.23.5/eslint/babel-eslint-plugin) Updates `@biomejs/biome` to 1.4.1 - [Release notes](https://github.com/biomejs/biome/releases) - [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG.md) - [Commits](https://github.com/biomejs/biome/commits/cli/v1.4.1/packages/@biomejs/biome) Updates `@emotion/react` to 11.11.3 - [Release notes](https://github.com/emotion-js/emotion/releases) - [Changelog](https://github.com/emotion-js/emotion/blob/main/CHANGELOG.md) - [Commits](https://github.com/emotion-js/emotion/compare/@emotion/react@11.11.1...@emotion/react@11.11.3) Updates `@size-limit/file` to 11.0.1 - [Changelog](https://github.com/ai/size-limit/blob/main/CHANGELOG.md) - [Commits](https://github.com/ai/size-limit/compare/11.0.0...11.0.1) Updates `@testing-library/jest-dom` to 6.1.5 - [Release notes](https://github.com/testing-library/jest-dom/releases) - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md) - [Commits](https://github.com/testing-library/jest-dom/compare/v6.1.4...v6.1.5) Updates `@types/jest` to 29.5.11 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) Updates `@types/jest-axe` to 3.5.9 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest-axe) Updates `@types/jest-image-snapshot` to 6.4.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest-image-snapshot) Updates `@types/node` to 20.10.5 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `@types/qs` to 6.9.11 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/qs) Updates `@types/react` to 18.2.45 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` to 18.2.18 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `@typescript-eslint/eslint-plugin` to 6.16.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.16.0/packages/eslint-plugin) Updates `@typescript-eslint/parser` to 6.16.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.16.0/packages/parser) Updates `ali-oss` to 6.19.0 - [Release notes](https://github.com/ali-sdk/ali-oss/releases) - [Changelog](https://github.com/ali-sdk/ali-oss/blob/master/CHANGELOG.md) - [Commits](https://github.com/ali-sdk/ali-oss/compare/v6.18.1...v6.19.0) Updates `antd-img-crop` to 4.18.0 - [Commits](https://github.com/nanxiaobei/antd-img-crop/commits) Updates `antd-style` to 3.6.1 - [Release notes](https://github.com/ant-design/antd-style/releases) - [Changelog](https://github.com/ant-design/antd-style/blob/master/CHANGELOG.md) - [Commits](https://github.com/ant-design/antd-style/compare/v3.5.2...v3.6.1) Updates `chalk` from 4.1.2 to 5.3.0 - [Release notes](https://github.com/chalk/chalk/releases) - [Commits](https://github.com/chalk/chalk/compare/v4.1.2...v5.3.0) Updates `dumi-plugin-color-chunk` to 1.1.0 - [Release notes](https://github.com/Wxh16144/dumi-plugin-color-chunk/releases) - [Changelog](https://github.com/Wxh16144/dumi-plugin-color-chunk/blob/master/CHANGELOG.md) - [Commits](https://github.com/Wxh16144/dumi-plugin-color-chunk/compare/v1.0.4...v1.1.0) Updates `eslint` to 8.56.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.54.0...v8.56.0) Updates `eslint-config-prettier` to 9.1.0 - [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/eslint-config-prettier/compare/v9.0.0...v9.1.0) Updates `eslint-plugin-import` to 2.29.1 - [Release notes](https://github.com/import-js/eslint-plugin-import/releases) - [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md) - [Commits](https://github.com/import-js/eslint-plugin-import/compare/v2.29.0...v2.29.1) Updates `fs-extra` to 11.2.0 - [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md) - [Commits](https://github.com/jprichardson/node-fs-extra/compare/11.1.1...11.2.0) Updates `gh-pages` to 6.1.1 - [Release notes](https://github.com/tschaub/gh-pages/releases) - [Changelog](https://github.com/tschaub/gh-pages/blob/main/changelog.md) - [Commits](https://github.com/tschaub/gh-pages/compare/v6.1.0...v6.1.1) Updates `jest-image-snapshot` to 6.4.0 - [Release notes](https://github.com/americanexpress/jest-image-snapshot/releases) - [Changelog](https://github.com/americanexpress/jest-image-snapshot/blob/main/CHANGELOG.md) - [Commits](https://github.com/americanexpress/jest-image-snapshot/compare/v6.2.0...v6.4.0) Updates `jest-puppeteer` to 9.0.2 - [Release notes](https://github.com/argos-ci/jest-puppeteer/releases) - [Changelog](https://github.com/argos-ci/jest-puppeteer/blob/main/packages/jest-puppeteer/CHANGELOG.md) - [Commits](https://github.com/argos-ci/jest-puppeteer/commits/v9.0.2/packages/jest-puppeteer) Updates `jsdom` to 23.0.1 - [Release notes](https://github.com/jsdom/jsdom/releases) - [Changelog](https://github.com/jsdom/jsdom/blob/main/Changelog.md) - [Commits](https://github.com/jsdom/jsdom/compare/23.0.0...23.0.1) Updates `lint-staged` to 15.2.0 - [Release notes](https://github.com/okonet/lint-staged/releases) - [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md) - [Commits](https://github.com/okonet/lint-staged/compare/v15.1.0...v15.2.0) Updates `open` to 10.0.1 - [Release notes](https://github.com/sindresorhus/open/releases) - [Commits](https://github.com/sindresorhus/open/compare/v10.0.0...v10.0.1) Updates `prettier` to 3.1.1 - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.1.0...3.1.1) Updates `prettier-plugin-jsdoc` to 1.3.0 - [Release notes](https://github.com/hosseinmd/prettier-plugin-jsdoc/releases) - [Changelog](https://github.com/hosseinmd/prettier-plugin-jsdoc/blob/master/CHANGELOG.md) - [Commits](https://github.com/hosseinmd/prettier-plugin-jsdoc/compare/v1.1.1...v1.3.0) Updates `puppeteer` to 21.6.1 - [Release notes](https://github.com/puppeteer/puppeteer/releases) - [Changelog](https://github.com/puppeteer/puppeteer/blob/main/release-please-config.json) - [Commits](https://github.com/puppeteer/puppeteer/compare/puppeteer-v21.5.2...puppeteer-v21.6.1) Updates `react-router-dom` to 6.21.1 - [Release notes](https://github.com/remix-run/react-router/releases) - [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md) - [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.21.1/packages/react-router-dom) Updates `regenerator-runtime` to 0.14.1 - [Release notes](https://github.com/facebook/regenerator/releases) - [Commits](https://github.com/facebook/regenerator/compare/regenerator-runtime@0.14.0...regenerator-runtime@0.14.1) Updates `sharp` to 0.33.1 - [Release notes](https://github.com/lovell/sharp/releases) - [Changelog](https://github.com/lovell/sharp/blob/main/docs/changelog.md) - [Commits](https://github.com/lovell/sharp/compare/v0.33.0...v0.33.1) Updates `size-limit` to 11.0.1 - [Changelog](https://github.com/ai/size-limit/blob/main/CHANGELOG.md) - [Commits](https://github.com/ai/size-limit/compare/11.0.0...11.0.1) Updates `stylelint` to 16.1.0 - [Release notes](https://github.com/stylelint/stylelint/releases) - [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md) - [Commits](https://github.com/stylelint/stylelint/compare/16.0.0...16.1.0) Updates `terser` to 5.26.0 - [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md) - [Commits](https://github.com/terser/terser/compare/v5.24.0...v5.26.0) Updates `tsx` to 4.7.0 - [Release notes](https://github.com/privatenumber/tsx/releases) - [Changelog](https://github.com/privatenumber/tsx/blob/develop/release.config.cjs) - [Commits](https://github.com/privatenumber/tsx/compare/v4.6.0...v4.7.0) Updates `typescript` to 5.3.3 - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Commits](https://github.com/Microsoft/TypeScript/compare/v5.3.2...v5.3.3) --- updated-dependencies: - dependency-name: "@antv/g6" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@babel/eslint-plugin" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@biomejs/biome" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@emotion/react" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@size-limit/file" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@testing-library/jest-dom" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/jest" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/jest-axe" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/jest-image-snapshot" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/node" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/qs" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/react" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/react-dom" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: ali-oss dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: antd-img-crop dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: antd-style dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: chalk dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: dumi-plugin-color-chunk dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint-config-prettier dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint-plugin-import dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: fs-extra dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: gh-pages dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: jest-image-snapshot dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: jest-puppeteer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: jsdom dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: lint-staged dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: open dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: prettier dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: prettier-plugin-jsdoc dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: puppeteer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: react-router-dom dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: regenerator-runtime dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: sharp dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: size-limit dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: stylelint dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: terser dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: tsx dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: typescript dependency-type: direct:development dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Update package.json Signed-off-by: afc163 <afc163@gmail.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: afc163 <afc163@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: afc163 <afc163@gmail.com>
2023-12-27 21:45:21 +08:00
"@types/jest-axe": "^3.5.9",
2023-11-23 20:43:11 +08:00
"@types/jest-environment-puppeteer": "^5.0.6",
chore(deps-dev): bump the dev-dependencies group with 41 updates (#46657) * chore(deps-dev): bump the dev-dependencies group with 41 updates Updates the requirements on [@antv/g6](https://github.com/antvis/g6), [@babel/eslint-plugin](https://github.com/babel/babel/tree/HEAD/eslint/babel-eslint-plugin), [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome), [@emotion/react](https://github.com/emotion-js/emotion), [@size-limit/file](https://github.com/ai/size-limit), [@testing-library/jest-dom](https://github.com/testing-library/jest-dom), [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest), [@types/jest-axe](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest-axe), [@types/jest-image-snapshot](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest-image-snapshot), [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [@types/qs](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/qs), [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react), [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom), [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser), [ali-oss](https://github.com/ali-sdk/ali-oss), [antd-img-crop](https://github.com/nanxiaobei/antd-img-crop), [antd-style](https://github.com/ant-design/antd-style), [chalk](https://github.com/chalk/chalk), [dumi-plugin-color-chunk](https://github.com/Wxh16144/dumi-plugin-color-chunk), [eslint](https://github.com/eslint/eslint), [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier), [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import), [fs-extra](https://github.com/jprichardson/node-fs-extra), [gh-pages](https://github.com/tschaub/gh-pages), [jest-image-snapshot](https://github.com/americanexpress/jest-image-snapshot), [jest-puppeteer](https://github.com/argos-ci/jest-puppeteer/tree/HEAD/packages/jest-puppeteer), [jsdom](https://github.com/jsdom/jsdom), [lint-staged](https://github.com/okonet/lint-staged), [open](https://github.com/sindresorhus/open), [prettier](https://github.com/prettier/prettier), [prettier-plugin-jsdoc](https://github.com/hosseinmd/prettier-plugin-jsdoc), [puppeteer](https://github.com/puppeteer/puppeteer), [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom), [regenerator-runtime](https://github.com/facebook/regenerator), [sharp](https://github.com/lovell/sharp), [size-limit](https://github.com/ai/size-limit), [stylelint](https://github.com/stylelint/stylelint), [terser](https://github.com/terser/terser), [tsx](https://github.com/privatenumber/tsx) and [typescript](https://github.com/Microsoft/TypeScript) to permit the latest version. Updates `@antv/g6` to 4.8.24 - [Release notes](https://github.com/antvis/g6/releases) - [Changelog](https://github.com/antvis/G6/blob/master/CHANGELOG.md) - [Commits](https://github.com/antvis/g6/commits) Updates `@babel/eslint-plugin` to 7.23.5 - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.23.5/eslint/babel-eslint-plugin) Updates `@biomejs/biome` to 1.4.1 - [Release notes](https://github.com/biomejs/biome/releases) - [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG.md) - [Commits](https://github.com/biomejs/biome/commits/cli/v1.4.1/packages/@biomejs/biome) Updates `@emotion/react` to 11.11.3 - [Release notes](https://github.com/emotion-js/emotion/releases) - [Changelog](https://github.com/emotion-js/emotion/blob/main/CHANGELOG.md) - [Commits](https://github.com/emotion-js/emotion/compare/@emotion/react@11.11.1...@emotion/react@11.11.3) Updates `@size-limit/file` to 11.0.1 - [Changelog](https://github.com/ai/size-limit/blob/main/CHANGELOG.md) - [Commits](https://github.com/ai/size-limit/compare/11.0.0...11.0.1) Updates `@testing-library/jest-dom` to 6.1.5 - [Release notes](https://github.com/testing-library/jest-dom/releases) - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md) - [Commits](https://github.com/testing-library/jest-dom/compare/v6.1.4...v6.1.5) Updates `@types/jest` to 29.5.11 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) Updates `@types/jest-axe` to 3.5.9 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest-axe) Updates `@types/jest-image-snapshot` to 6.4.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest-image-snapshot) Updates `@types/node` to 20.10.5 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `@types/qs` to 6.9.11 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/qs) Updates `@types/react` to 18.2.45 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` to 18.2.18 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `@typescript-eslint/eslint-plugin` to 6.16.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.16.0/packages/eslint-plugin) Updates `@typescript-eslint/parser` to 6.16.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.16.0/packages/parser) Updates `ali-oss` to 6.19.0 - [Release notes](https://github.com/ali-sdk/ali-oss/releases) - [Changelog](https://github.com/ali-sdk/ali-oss/blob/master/CHANGELOG.md) - [Commits](https://github.com/ali-sdk/ali-oss/compare/v6.18.1...v6.19.0) Updates `antd-img-crop` to 4.18.0 - [Commits](https://github.com/nanxiaobei/antd-img-crop/commits) Updates `antd-style` to 3.6.1 - [Release notes](https://github.com/ant-design/antd-style/releases) - [Changelog](https://github.com/ant-design/antd-style/blob/master/CHANGELOG.md) - [Commits](https://github.com/ant-design/antd-style/compare/v3.5.2...v3.6.1) Updates `chalk` from 4.1.2 to 5.3.0 - [Release notes](https://github.com/chalk/chalk/releases) - [Commits](https://github.com/chalk/chalk/compare/v4.1.2...v5.3.0) Updates `dumi-plugin-color-chunk` to 1.1.0 - [Release notes](https://github.com/Wxh16144/dumi-plugin-color-chunk/releases) - [Changelog](https://github.com/Wxh16144/dumi-plugin-color-chunk/blob/master/CHANGELOG.md) - [Commits](https://github.com/Wxh16144/dumi-plugin-color-chunk/compare/v1.0.4...v1.1.0) Updates `eslint` to 8.56.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.54.0...v8.56.0) Updates `eslint-config-prettier` to 9.1.0 - [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/eslint-config-prettier/compare/v9.0.0...v9.1.0) Updates `eslint-plugin-import` to 2.29.1 - [Release notes](https://github.com/import-js/eslint-plugin-import/releases) - [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md) - [Commits](https://github.com/import-js/eslint-plugin-import/compare/v2.29.0...v2.29.1) Updates `fs-extra` to 11.2.0 - [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md) - [Commits](https://github.com/jprichardson/node-fs-extra/compare/11.1.1...11.2.0) Updates `gh-pages` to 6.1.1 - [Release notes](https://github.com/tschaub/gh-pages/releases) - [Changelog](https://github.com/tschaub/gh-pages/blob/main/changelog.md) - [Commits](https://github.com/tschaub/gh-pages/compare/v6.1.0...v6.1.1) Updates `jest-image-snapshot` to 6.4.0 - [Release notes](https://github.com/americanexpress/jest-image-snapshot/releases) - [Changelog](https://github.com/americanexpress/jest-image-snapshot/blob/main/CHANGELOG.md) - [Commits](https://github.com/americanexpress/jest-image-snapshot/compare/v6.2.0...v6.4.0) Updates `jest-puppeteer` to 9.0.2 - [Release notes](https://github.com/argos-ci/jest-puppeteer/releases) - [Changelog](https://github.com/argos-ci/jest-puppeteer/blob/main/packages/jest-puppeteer/CHANGELOG.md) - [Commits](https://github.com/argos-ci/jest-puppeteer/commits/v9.0.2/packages/jest-puppeteer) Updates `jsdom` to 23.0.1 - [Release notes](https://github.com/jsdom/jsdom/releases) - [Changelog](https://github.com/jsdom/jsdom/blob/main/Changelog.md) - [Commits](https://github.com/jsdom/jsdom/compare/23.0.0...23.0.1) Updates `lint-staged` to 15.2.0 - [Release notes](https://github.com/okonet/lint-staged/releases) - [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md) - [Commits](https://github.com/okonet/lint-staged/compare/v15.1.0...v15.2.0) Updates `open` to 10.0.1 - [Release notes](https://github.com/sindresorhus/open/releases) - [Commits](https://github.com/sindresorhus/open/compare/v10.0.0...v10.0.1) Updates `prettier` to 3.1.1 - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.1.0...3.1.1) Updates `prettier-plugin-jsdoc` to 1.3.0 - [Release notes](https://github.com/hosseinmd/prettier-plugin-jsdoc/releases) - [Changelog](https://github.com/hosseinmd/prettier-plugin-jsdoc/blob/master/CHANGELOG.md) - [Commits](https://github.com/hosseinmd/prettier-plugin-jsdoc/compare/v1.1.1...v1.3.0) Updates `puppeteer` to 21.6.1 - [Release notes](https://github.com/puppeteer/puppeteer/releases) - [Changelog](https://github.com/puppeteer/puppeteer/blob/main/release-please-config.json) - [Commits](https://github.com/puppeteer/puppeteer/compare/puppeteer-v21.5.2...puppeteer-v21.6.1) Updates `react-router-dom` to 6.21.1 - [Release notes](https://github.com/remix-run/react-router/releases) - [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md) - [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.21.1/packages/react-router-dom) Updates `regenerator-runtime` to 0.14.1 - [Release notes](https://github.com/facebook/regenerator/releases) - [Commits](https://github.com/facebook/regenerator/compare/regenerator-runtime@0.14.0...regenerator-runtime@0.14.1) Updates `sharp` to 0.33.1 - [Release notes](https://github.com/lovell/sharp/releases) - [Changelog](https://github.com/lovell/sharp/blob/main/docs/changelog.md) - [Commits](https://github.com/lovell/sharp/compare/v0.33.0...v0.33.1) Updates `size-limit` to 11.0.1 - [Changelog](https://github.com/ai/size-limit/blob/main/CHANGELOG.md) - [Commits](https://github.com/ai/size-limit/compare/11.0.0...11.0.1) Updates `stylelint` to 16.1.0 - [Release notes](https://github.com/stylelint/stylelint/releases) - [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md) - [Commits](https://github.com/stylelint/stylelint/compare/16.0.0...16.1.0) Updates `terser` to 5.26.0 - [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md) - [Commits](https://github.com/terser/terser/compare/v5.24.0...v5.26.0) Updates `tsx` to 4.7.0 - [Release notes](https://github.com/privatenumber/tsx/releases) - [Changelog](https://github.com/privatenumber/tsx/blob/develop/release.config.cjs) - [Commits](https://github.com/privatenumber/tsx/compare/v4.6.0...v4.7.0) Updates `typescript` to 5.3.3 - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Commits](https://github.com/Microsoft/TypeScript/compare/v5.3.2...v5.3.3) --- updated-dependencies: - dependency-name: "@antv/g6" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@babel/eslint-plugin" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@biomejs/biome" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@emotion/react" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@size-limit/file" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@testing-library/jest-dom" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/jest" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/jest-axe" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/jest-image-snapshot" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/node" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/qs" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/react" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/react-dom" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: ali-oss dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: antd-img-crop dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: antd-style dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: chalk dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: dumi-plugin-color-chunk dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint-config-prettier dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint-plugin-import dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: fs-extra dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: gh-pages dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: jest-image-snapshot dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: jest-puppeteer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: jsdom dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: lint-staged dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: open dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: prettier dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: prettier-plugin-jsdoc dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: puppeteer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: react-router-dom dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: regenerator-runtime dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: sharp dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: size-limit dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: stylelint dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: terser dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: tsx dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: typescript dependency-type: direct:development dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Update package.json Signed-off-by: afc163 <afc163@gmail.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: afc163 <afc163@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: afc163 <afc163@gmail.com>
2023-12-27 21:45:21 +08:00
"@types/jest-image-snapshot": "^6.4.0",
"@types/jquery": "^3.5.30",
"@types/jsdom": "^21.1.7",
2024-09-16 17:23:52 +08:00
"@types/lodash": "^4.17.7",
2023-12-30 21:01:31 +08:00
"@types/minimist": "^1.2.5",
2024-09-16 17:23:52 +08:00
"@types/node": "^22.5.5",
2023-11-23 20:43:11 +08:00
"@types/nprogress": "^0.2.3",
"@types/pixelmatch": "^5.2.6",
"@types/pngjs": "^6.0.5",
"@types/prismjs": "^1.26.4",
2023-11-23 20:43:11 +08:00
"@types/progress": "^2.0.7",
2024-09-16 17:23:52 +08:00
"@types/qs": "^6.9.16",
"@types/react": "^18.3.5",
2023-11-23 20:43:11 +08:00
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.3.0",
"@types/react-highlight-words": "^0.20.0",
"@types/react-resizable": "^3.0.8",
"@types/semver": "^7.5.8",
"@types/spinnies": "^0.5.3",
"@types/tar": "^6.1.13",
2023-11-25 05:25:29 +08:00
"@types/throttle-debounce": "^5.0.2",
"@types/warning": "^3.0.3",
2024-09-16 17:23:52 +08:00
"adm-zip": "^0.5.16",
"ali-oss": "^6.21.0",
"antd-img-crop": "^4.23.0",
"antd-style": "^3.6.3",
chore(deps-dev): bump the dev-dependencies group with 11 updates (#47377) --- updated-dependencies: - dependency-name: "@codesandbox/sandpack-react" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@testing-library/jest-dom" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/react" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: antd-token-previewer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint-plugin-unicorn dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: lint-staged dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: lunar-typescript dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: react-intersection-observer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: semver dependency-type: direct:development dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-06 21:22:52 +08:00
"antd-token-previewer": "^2.0.8",
2024-09-16 17:23:52 +08:00
"axios": "^1.7.7",
chore(deps-dev): bump the dev-dependencies group with 5 updates (#46885) Updates the requirements on [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome), [@testing-library/dom](https://github.com/testing-library/dom-testing-library), [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) and [chalk](https://github.com/chalk/chalk) to permit the latest version. Updates `@biomejs/biome` to 1.5.0 - [Release notes](https://github.com/biomejs/biome/releases) - [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG.md) - [Commits](https://github.com/biomejs/biome/commits/cli/v1.5.0/packages/@biomejs/biome) Updates `@testing-library/dom` to 9.3.4 - [Release notes](https://github.com/testing-library/dom-testing-library/releases) - [Changelog](https://github.com/testing-library/dom-testing-library/blob/main/CHANGELOG.md) - [Commits](https://github.com/testing-library/dom-testing-library/compare/v9.3.3...v9.3.4) Updates `@typescript-eslint/eslint-plugin` to 6.18.1 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.18.1/packages/eslint-plugin) Updates `@typescript-eslint/parser` to 6.18.1 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.18.1/packages/parser) Updates `chalk` to 4.1.2 - [Release notes](https://github.com/chalk/chalk/releases) - [Commits](https://github.com/chalk/chalk/compare/v4.1.0...v4.1.2) --- updated-dependencies: - dependency-name: "@biomejs/biome" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@testing-library/dom" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: chalk dependency-type: direct:development dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-09 20:56:02 +08:00
"chalk": "^4.1.2",
"cheerio": "^1.0.0",
"circular-dependency-plugin": "^5.2.2",
"cli-progress": "^3.12.0",
2023-11-23 20:43:11 +08:00
"cross-env": "^7.0.3",
"cross-fetch": "^4.0.0",
2018-10-06 20:30:27 +08:00
"dekko": "^0.2.1",
2024-07-05 17:35:31 +08:00
"dotenv": "^16.4.5",
2024-09-16 17:23:52 +08:00
"dumi": "~2.4.10",
"dumi-plugin-color-chunk": "^1.1.2",
"eslint": "^9.0.0",
"eslint-plugin-compat": "^6.0.0",
"eslint-plugin-jest": "^28.8.2",
2024-09-16 17:23:52 +08:00
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react-hooks": "^5.1.0-beta-26f2496093-20240514",
"eslint-plugin-react-refresh": "^0.4.11",
2023-11-23 20:43:11 +08:00
"fast-glob": "^3.3.2",
"fetch-jsonp": "^1.3.0",
chore(deps-dev): bump the dev-dependencies group with 41 updates (#46657) * chore(deps-dev): bump the dev-dependencies group with 41 updates Updates the requirements on [@antv/g6](https://github.com/antvis/g6), [@babel/eslint-plugin](https://github.com/babel/babel/tree/HEAD/eslint/babel-eslint-plugin), [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome), [@emotion/react](https://github.com/emotion-js/emotion), [@size-limit/file](https://github.com/ai/size-limit), [@testing-library/jest-dom](https://github.com/testing-library/jest-dom), [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest), [@types/jest-axe](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest-axe), [@types/jest-image-snapshot](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest-image-snapshot), [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [@types/qs](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/qs), [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react), [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom), [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser), [ali-oss](https://github.com/ali-sdk/ali-oss), [antd-img-crop](https://github.com/nanxiaobei/antd-img-crop), [antd-style](https://github.com/ant-design/antd-style), [chalk](https://github.com/chalk/chalk), [dumi-plugin-color-chunk](https://github.com/Wxh16144/dumi-plugin-color-chunk), [eslint](https://github.com/eslint/eslint), [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier), [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import), [fs-extra](https://github.com/jprichardson/node-fs-extra), [gh-pages](https://github.com/tschaub/gh-pages), [jest-image-snapshot](https://github.com/americanexpress/jest-image-snapshot), [jest-puppeteer](https://github.com/argos-ci/jest-puppeteer/tree/HEAD/packages/jest-puppeteer), [jsdom](https://github.com/jsdom/jsdom), [lint-staged](https://github.com/okonet/lint-staged), [open](https://github.com/sindresorhus/open), [prettier](https://github.com/prettier/prettier), [prettier-plugin-jsdoc](https://github.com/hosseinmd/prettier-plugin-jsdoc), [puppeteer](https://github.com/puppeteer/puppeteer), [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom), [regenerator-runtime](https://github.com/facebook/regenerator), [sharp](https://github.com/lovell/sharp), [size-limit](https://github.com/ai/size-limit), [stylelint](https://github.com/stylelint/stylelint), [terser](https://github.com/terser/terser), [tsx](https://github.com/privatenumber/tsx) and [typescript](https://github.com/Microsoft/TypeScript) to permit the latest version. Updates `@antv/g6` to 4.8.24 - [Release notes](https://github.com/antvis/g6/releases) - [Changelog](https://github.com/antvis/G6/blob/master/CHANGELOG.md) - [Commits](https://github.com/antvis/g6/commits) Updates `@babel/eslint-plugin` to 7.23.5 - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.23.5/eslint/babel-eslint-plugin) Updates `@biomejs/biome` to 1.4.1 - [Release notes](https://github.com/biomejs/biome/releases) - [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG.md) - [Commits](https://github.com/biomejs/biome/commits/cli/v1.4.1/packages/@biomejs/biome) Updates `@emotion/react` to 11.11.3 - [Release notes](https://github.com/emotion-js/emotion/releases) - [Changelog](https://github.com/emotion-js/emotion/blob/main/CHANGELOG.md) - [Commits](https://github.com/emotion-js/emotion/compare/@emotion/react@11.11.1...@emotion/react@11.11.3) Updates `@size-limit/file` to 11.0.1 - [Changelog](https://github.com/ai/size-limit/blob/main/CHANGELOG.md) - [Commits](https://github.com/ai/size-limit/compare/11.0.0...11.0.1) Updates `@testing-library/jest-dom` to 6.1.5 - [Release notes](https://github.com/testing-library/jest-dom/releases) - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md) - [Commits](https://github.com/testing-library/jest-dom/compare/v6.1.4...v6.1.5) Updates `@types/jest` to 29.5.11 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) Updates `@types/jest-axe` to 3.5.9 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest-axe) Updates `@types/jest-image-snapshot` to 6.4.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest-image-snapshot) Updates `@types/node` to 20.10.5 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `@types/qs` to 6.9.11 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/qs) Updates `@types/react` to 18.2.45 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` to 18.2.18 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `@typescript-eslint/eslint-plugin` to 6.16.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.16.0/packages/eslint-plugin) Updates `@typescript-eslint/parser` to 6.16.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.16.0/packages/parser) Updates `ali-oss` to 6.19.0 - [Release notes](https://github.com/ali-sdk/ali-oss/releases) - [Changelog](https://github.com/ali-sdk/ali-oss/blob/master/CHANGELOG.md) - [Commits](https://github.com/ali-sdk/ali-oss/compare/v6.18.1...v6.19.0) Updates `antd-img-crop` to 4.18.0 - [Commits](https://github.com/nanxiaobei/antd-img-crop/commits) Updates `antd-style` to 3.6.1 - [Release notes](https://github.com/ant-design/antd-style/releases) - [Changelog](https://github.com/ant-design/antd-style/blob/master/CHANGELOG.md) - [Commits](https://github.com/ant-design/antd-style/compare/v3.5.2...v3.6.1) Updates `chalk` from 4.1.2 to 5.3.0 - [Release notes](https://github.com/chalk/chalk/releases) - [Commits](https://github.com/chalk/chalk/compare/v4.1.2...v5.3.0) Updates `dumi-plugin-color-chunk` to 1.1.0 - [Release notes](https://github.com/Wxh16144/dumi-plugin-color-chunk/releases) - [Changelog](https://github.com/Wxh16144/dumi-plugin-color-chunk/blob/master/CHANGELOG.md) - [Commits](https://github.com/Wxh16144/dumi-plugin-color-chunk/compare/v1.0.4...v1.1.0) Updates `eslint` to 8.56.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.54.0...v8.56.0) Updates `eslint-config-prettier` to 9.1.0 - [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/eslint-config-prettier/compare/v9.0.0...v9.1.0) Updates `eslint-plugin-import` to 2.29.1 - [Release notes](https://github.com/import-js/eslint-plugin-import/releases) - [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md) - [Commits](https://github.com/import-js/eslint-plugin-import/compare/v2.29.0...v2.29.1) Updates `fs-extra` to 11.2.0 - [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md) - [Commits](https://github.com/jprichardson/node-fs-extra/compare/11.1.1...11.2.0) Updates `gh-pages` to 6.1.1 - [Release notes](https://github.com/tschaub/gh-pages/releases) - [Changelog](https://github.com/tschaub/gh-pages/blob/main/changelog.md) - [Commits](https://github.com/tschaub/gh-pages/compare/v6.1.0...v6.1.1) Updates `jest-image-snapshot` to 6.4.0 - [Release notes](https://github.com/americanexpress/jest-image-snapshot/releases) - [Changelog](https://github.com/americanexpress/jest-image-snapshot/blob/main/CHANGELOG.md) - [Commits](https://github.com/americanexpress/jest-image-snapshot/compare/v6.2.0...v6.4.0) Updates `jest-puppeteer` to 9.0.2 - [Release notes](https://github.com/argos-ci/jest-puppeteer/releases) - [Changelog](https://github.com/argos-ci/jest-puppeteer/blob/main/packages/jest-puppeteer/CHANGELOG.md) - [Commits](https://github.com/argos-ci/jest-puppeteer/commits/v9.0.2/packages/jest-puppeteer) Updates `jsdom` to 23.0.1 - [Release notes](https://github.com/jsdom/jsdom/releases) - [Changelog](https://github.com/jsdom/jsdom/blob/main/Changelog.md) - [Commits](https://github.com/jsdom/jsdom/compare/23.0.0...23.0.1) Updates `lint-staged` to 15.2.0 - [Release notes](https://github.com/okonet/lint-staged/releases) - [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md) - [Commits](https://github.com/okonet/lint-staged/compare/v15.1.0...v15.2.0) Updates `open` to 10.0.1 - [Release notes](https://github.com/sindresorhus/open/releases) - [Commits](https://github.com/sindresorhus/open/compare/v10.0.0...v10.0.1) Updates `prettier` to 3.1.1 - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.1.0...3.1.1) Updates `prettier-plugin-jsdoc` to 1.3.0 - [Release notes](https://github.com/hosseinmd/prettier-plugin-jsdoc/releases) - [Changelog](https://github.com/hosseinmd/prettier-plugin-jsdoc/blob/master/CHANGELOG.md) - [Commits](https://github.com/hosseinmd/prettier-plugin-jsdoc/compare/v1.1.1...v1.3.0) Updates `puppeteer` to 21.6.1 - [Release notes](https://github.com/puppeteer/puppeteer/releases) - [Changelog](https://github.com/puppeteer/puppeteer/blob/main/release-please-config.json) - [Commits](https://github.com/puppeteer/puppeteer/compare/puppeteer-v21.5.2...puppeteer-v21.6.1) Updates `react-router-dom` to 6.21.1 - [Release notes](https://github.com/remix-run/react-router/releases) - [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md) - [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.21.1/packages/react-router-dom) Updates `regenerator-runtime` to 0.14.1 - [Release notes](https://github.com/facebook/regenerator/releases) - [Commits](https://github.com/facebook/regenerator/compare/regenerator-runtime@0.14.0...regenerator-runtime@0.14.1) Updates `sharp` to 0.33.1 - [Release notes](https://github.com/lovell/sharp/releases) - [Changelog](https://github.com/lovell/sharp/blob/main/docs/changelog.md) - [Commits](https://github.com/lovell/sharp/compare/v0.33.0...v0.33.1) Updates `size-limit` to 11.0.1 - [Changelog](https://github.com/ai/size-limit/blob/main/CHANGELOG.md) - [Commits](https://github.com/ai/size-limit/compare/11.0.0...11.0.1) Updates `stylelint` to 16.1.0 - [Release notes](https://github.com/stylelint/stylelint/releases) - [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md) - [Commits](https://github.com/stylelint/stylelint/compare/16.0.0...16.1.0) Updates `terser` to 5.26.0 - [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md) - [Commits](https://github.com/terser/terser/compare/v5.24.0...v5.26.0) Updates `tsx` to 4.7.0 - [Release notes](https://github.com/privatenumber/tsx/releases) - [Changelog](https://github.com/privatenumber/tsx/blob/develop/release.config.cjs) - [Commits](https://github.com/privatenumber/tsx/compare/v4.6.0...v4.7.0) Updates `typescript` to 5.3.3 - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Commits](https://github.com/Microsoft/TypeScript/compare/v5.3.2...v5.3.3) --- updated-dependencies: - dependency-name: "@antv/g6" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@babel/eslint-plugin" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@biomejs/biome" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@emotion/react" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@size-limit/file" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@testing-library/jest-dom" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/jest" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/jest-axe" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/jest-image-snapshot" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/node" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/qs" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/react" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/react-dom" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: ali-oss dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: antd-img-crop dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: antd-style dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: chalk dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: dumi-plugin-color-chunk dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint-config-prettier dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint-plugin-import dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: fs-extra dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: gh-pages dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: jest-image-snapshot dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: jest-puppeteer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: jsdom dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: lint-staged dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: open dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: prettier dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: prettier-plugin-jsdoc dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: puppeteer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: react-router-dom dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: regenerator-runtime dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: sharp dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: size-limit dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: stylelint dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: terser dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: tsx dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: typescript dependency-type: direct:development dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Update package.json Signed-off-by: afc163 <afc163@gmail.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: afc163 <afc163@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: afc163 <afc163@gmail.com>
2023-12-27 21:45:21 +08:00
"fs-extra": "^11.2.0",
"gh-pages": "^6.1.1",
"glob": "^11.0.0",
2023-11-25 05:25:29 +08:00
"html2sketch": "^1.0.2",
"http-server": "^14.1.1",
2024-09-16 17:23:52 +08:00
"husky": "^9.1.6",
"identity-obj-proxy": "^3.0.0",
chore(deps-dev): bump the dev-dependencies group with 9 updates (#48701) * chore(deps-dev): bump the dev-dependencies group with 9 updates --- updated-dependencies: - dependency-name: "@codesandbox/sandpack-react" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@testing-library/dom" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: dumi dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: eslint-plugin-jest dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint-plugin-react-hooks dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: immer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: inquirer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: react-intersection-observer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: tar-fs dependency-type: direct:development dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Update package.json Signed-off-by: lijianan <574980606@qq.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: lijianan <574980606@qq.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: afc163 <afc163@gmail.com> Co-authored-by: lijianan <574980606@qq.com>
2024-04-29 22:47:46 +08:00
"immer": "^10.1.1",
"is-ci": "^3.0.1",
"isomorphic-fetch": "^3.0.0",
2023-11-25 05:25:29 +08:00
"jest": "^29.7.0",
"jest-axe": "^9.0.0",
2023-11-25 05:25:29 +08:00
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^29.7.0",
chore(deps-dev): bump the dev-dependencies group with 41 updates (#46657) * chore(deps-dev): bump the dev-dependencies group with 41 updates Updates the requirements on [@antv/g6](https://github.com/antvis/g6), [@babel/eslint-plugin](https://github.com/babel/babel/tree/HEAD/eslint/babel-eslint-plugin), [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome), [@emotion/react](https://github.com/emotion-js/emotion), [@size-limit/file](https://github.com/ai/size-limit), [@testing-library/jest-dom](https://github.com/testing-library/jest-dom), [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest), [@types/jest-axe](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest-axe), [@types/jest-image-snapshot](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest-image-snapshot), [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [@types/qs](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/qs), [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react), [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom), [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser), [ali-oss](https://github.com/ali-sdk/ali-oss), [antd-img-crop](https://github.com/nanxiaobei/antd-img-crop), [antd-style](https://github.com/ant-design/antd-style), [chalk](https://github.com/chalk/chalk), [dumi-plugin-color-chunk](https://github.com/Wxh16144/dumi-plugin-color-chunk), [eslint](https://github.com/eslint/eslint), [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier), [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import), [fs-extra](https://github.com/jprichardson/node-fs-extra), [gh-pages](https://github.com/tschaub/gh-pages), [jest-image-snapshot](https://github.com/americanexpress/jest-image-snapshot), [jest-puppeteer](https://github.com/argos-ci/jest-puppeteer/tree/HEAD/packages/jest-puppeteer), [jsdom](https://github.com/jsdom/jsdom), [lint-staged](https://github.com/okonet/lint-staged), [open](https://github.com/sindresorhus/open), [prettier](https://github.com/prettier/prettier), [prettier-plugin-jsdoc](https://github.com/hosseinmd/prettier-plugin-jsdoc), [puppeteer](https://github.com/puppeteer/puppeteer), [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom), [regenerator-runtime](https://github.com/facebook/regenerator), [sharp](https://github.com/lovell/sharp), [size-limit](https://github.com/ai/size-limit), [stylelint](https://github.com/stylelint/stylelint), [terser](https://github.com/terser/terser), [tsx](https://github.com/privatenumber/tsx) and [typescript](https://github.com/Microsoft/TypeScript) to permit the latest version. Updates `@antv/g6` to 4.8.24 - [Release notes](https://github.com/antvis/g6/releases) - [Changelog](https://github.com/antvis/G6/blob/master/CHANGELOG.md) - [Commits](https://github.com/antvis/g6/commits) Updates `@babel/eslint-plugin` to 7.23.5 - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.23.5/eslint/babel-eslint-plugin) Updates `@biomejs/biome` to 1.4.1 - [Release notes](https://github.com/biomejs/biome/releases) - [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG.md) - [Commits](https://github.com/biomejs/biome/commits/cli/v1.4.1/packages/@biomejs/biome) Updates `@emotion/react` to 11.11.3 - [Release notes](https://github.com/emotion-js/emotion/releases) - [Changelog](https://github.com/emotion-js/emotion/blob/main/CHANGELOG.md) - [Commits](https://github.com/emotion-js/emotion/compare/@emotion/react@11.11.1...@emotion/react@11.11.3) Updates `@size-limit/file` to 11.0.1 - [Changelog](https://github.com/ai/size-limit/blob/main/CHANGELOG.md) - [Commits](https://github.com/ai/size-limit/compare/11.0.0...11.0.1) Updates `@testing-library/jest-dom` to 6.1.5 - [Release notes](https://github.com/testing-library/jest-dom/releases) - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md) - [Commits](https://github.com/testing-library/jest-dom/compare/v6.1.4...v6.1.5) Updates `@types/jest` to 29.5.11 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) Updates `@types/jest-axe` to 3.5.9 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest-axe) Updates `@types/jest-image-snapshot` to 6.4.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest-image-snapshot) Updates `@types/node` to 20.10.5 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `@types/qs` to 6.9.11 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/qs) Updates `@types/react` to 18.2.45 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` to 18.2.18 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `@typescript-eslint/eslint-plugin` to 6.16.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.16.0/packages/eslint-plugin) Updates `@typescript-eslint/parser` to 6.16.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.16.0/packages/parser) Updates `ali-oss` to 6.19.0 - [Release notes](https://github.com/ali-sdk/ali-oss/releases) - [Changelog](https://github.com/ali-sdk/ali-oss/blob/master/CHANGELOG.md) - [Commits](https://github.com/ali-sdk/ali-oss/compare/v6.18.1...v6.19.0) Updates `antd-img-crop` to 4.18.0 - [Commits](https://github.com/nanxiaobei/antd-img-crop/commits) Updates `antd-style` to 3.6.1 - [Release notes](https://github.com/ant-design/antd-style/releases) - [Changelog](https://github.com/ant-design/antd-style/blob/master/CHANGELOG.md) - [Commits](https://github.com/ant-design/antd-style/compare/v3.5.2...v3.6.1) Updates `chalk` from 4.1.2 to 5.3.0 - [Release notes](https://github.com/chalk/chalk/releases) - [Commits](https://github.com/chalk/chalk/compare/v4.1.2...v5.3.0) Updates `dumi-plugin-color-chunk` to 1.1.0 - [Release notes](https://github.com/Wxh16144/dumi-plugin-color-chunk/releases) - [Changelog](https://github.com/Wxh16144/dumi-plugin-color-chunk/blob/master/CHANGELOG.md) - [Commits](https://github.com/Wxh16144/dumi-plugin-color-chunk/compare/v1.0.4...v1.1.0) Updates `eslint` to 8.56.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.54.0...v8.56.0) Updates `eslint-config-prettier` to 9.1.0 - [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/eslint-config-prettier/compare/v9.0.0...v9.1.0) Updates `eslint-plugin-import` to 2.29.1 - [Release notes](https://github.com/import-js/eslint-plugin-import/releases) - [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md) - [Commits](https://github.com/import-js/eslint-plugin-import/compare/v2.29.0...v2.29.1) Updates `fs-extra` to 11.2.0 - [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md) - [Commits](https://github.com/jprichardson/node-fs-extra/compare/11.1.1...11.2.0) Updates `gh-pages` to 6.1.1 - [Release notes](https://github.com/tschaub/gh-pages/releases) - [Changelog](https://github.com/tschaub/gh-pages/blob/main/changelog.md) - [Commits](https://github.com/tschaub/gh-pages/compare/v6.1.0...v6.1.1) Updates `jest-image-snapshot` to 6.4.0 - [Release notes](https://github.com/americanexpress/jest-image-snapshot/releases) - [Changelog](https://github.com/americanexpress/jest-image-snapshot/blob/main/CHANGELOG.md) - [Commits](https://github.com/americanexpress/jest-image-snapshot/compare/v6.2.0...v6.4.0) Updates `jest-puppeteer` to 9.0.2 - [Release notes](https://github.com/argos-ci/jest-puppeteer/releases) - [Changelog](https://github.com/argos-ci/jest-puppeteer/blob/main/packages/jest-puppeteer/CHANGELOG.md) - [Commits](https://github.com/argos-ci/jest-puppeteer/commits/v9.0.2/packages/jest-puppeteer) Updates `jsdom` to 23.0.1 - [Release notes](https://github.com/jsdom/jsdom/releases) - [Changelog](https://github.com/jsdom/jsdom/blob/main/Changelog.md) - [Commits](https://github.com/jsdom/jsdom/compare/23.0.0...23.0.1) Updates `lint-staged` to 15.2.0 - [Release notes](https://github.com/okonet/lint-staged/releases) - [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md) - [Commits](https://github.com/okonet/lint-staged/compare/v15.1.0...v15.2.0) Updates `open` to 10.0.1 - [Release notes](https://github.com/sindresorhus/open/releases) - [Commits](https://github.com/sindresorhus/open/compare/v10.0.0...v10.0.1) Updates `prettier` to 3.1.1 - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.1.0...3.1.1) Updates `prettier-plugin-jsdoc` to 1.3.0 - [Release notes](https://github.com/hosseinmd/prettier-plugin-jsdoc/releases) - [Changelog](https://github.com/hosseinmd/prettier-plugin-jsdoc/blob/master/CHANGELOG.md) - [Commits](https://github.com/hosseinmd/prettier-plugin-jsdoc/compare/v1.1.1...v1.3.0) Updates `puppeteer` to 21.6.1 - [Release notes](https://github.com/puppeteer/puppeteer/releases) - [Changelog](https://github.com/puppeteer/puppeteer/blob/main/release-please-config.json) - [Commits](https://github.com/puppeteer/puppeteer/compare/puppeteer-v21.5.2...puppeteer-v21.6.1) Updates `react-router-dom` to 6.21.1 - [Release notes](https://github.com/remix-run/react-router/releases) - [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md) - [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.21.1/packages/react-router-dom) Updates `regenerator-runtime` to 0.14.1 - [Release notes](https://github.com/facebook/regenerator/releases) - [Commits](https://github.com/facebook/regenerator/compare/regenerator-runtime@0.14.0...regenerator-runtime@0.14.1) Updates `sharp` to 0.33.1 - [Release notes](https://github.com/lovell/sharp/releases) - [Changelog](https://github.com/lovell/sharp/blob/main/docs/changelog.md) - [Commits](https://github.com/lovell/sharp/compare/v0.33.0...v0.33.1) Updates `size-limit` to 11.0.1 - [Changelog](https://github.com/ai/size-limit/blob/main/CHANGELOG.md) - [Commits](https://github.com/ai/size-limit/compare/11.0.0...11.0.1) Updates `stylelint` to 16.1.0 - [Release notes](https://github.com/stylelint/stylelint/releases) - [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md) - [Commits](https://github.com/stylelint/stylelint/compare/16.0.0...16.1.0) Updates `terser` to 5.26.0 - [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md) - [Commits](https://github.com/terser/terser/compare/v5.24.0...v5.26.0) Updates `tsx` to 4.7.0 - [Release notes](https://github.com/privatenumber/tsx/releases) - [Changelog](https://github.com/privatenumber/tsx/blob/develop/release.config.cjs) - [Commits](https://github.com/privatenumber/tsx/compare/v4.6.0...v4.7.0) Updates `typescript` to 5.3.3 - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Commits](https://github.com/Microsoft/TypeScript/compare/v5.3.2...v5.3.3) --- updated-dependencies: - dependency-name: "@antv/g6" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@babel/eslint-plugin" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@biomejs/biome" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@emotion/react" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@size-limit/file" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@testing-library/jest-dom" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/jest" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/jest-axe" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/jest-image-snapshot" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/node" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/qs" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/react" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/react-dom" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: ali-oss dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: antd-img-crop dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: antd-style dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: chalk dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: dumi-plugin-color-chunk dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint-config-prettier dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint-plugin-import dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: fs-extra dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: gh-pages dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: jest-image-snapshot dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: jest-puppeteer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: jsdom dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: lint-staged dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: open dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: prettier dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: prettier-plugin-jsdoc dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: puppeteer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: react-router-dom dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: regenerator-runtime dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: sharp dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: size-limit dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: stylelint dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: terser dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: tsx dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: typescript dependency-type: direct:development dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Update package.json Signed-off-by: afc163 <afc163@gmail.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: afc163 <afc163@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: afc163 <afc163@gmail.com>
2023-12-27 21:45:21 +08:00
"jest-image-snapshot": "^6.4.0",
2024-09-16 17:23:52 +08:00
"jest-puppeteer": "^10.1.1",
2023-11-23 20:43:11 +08:00
"jquery": "^3.7.1",
chore(deps-dev): bump the dev-dependencies group with 1 update (#50597) * chore(deps-dev): bump the dev-dependencies group with 1 update Bumps the dev-dependencies group with 4 updates: [@antv/g6](https://github.com/antvis/g6), [eslint-plugin-lodash](https://github.com/idok/eslint-plugin-lodash), [jsdom](https://github.com/jsdom/jsdom) and [puppeteer](https://github.com/puppeteer/puppeteer). Updates `@antv/g6` from 4.8.24 to 5.0.17 - [Release notes](https://github.com/antvis/g6/releases) - [Changelog](https://github.com/antvis/G6/blob/v5/CHANGELOG.md) - [Commits](https://github.com/antvis/g6/commits/5.0.17) Updates `eslint-plugin-lodash` from 7.4.0 to 8.0.0 - [Changelog](https://github.com/idok/eslint-plugin-lodash/blob/master/CHANGELOG.md) - [Commits](https://github.com/idok/eslint-plugin-lodash/commits/v8.0.0) Updates `jsdom` from 24.1.3 to 25.0.0 - [Release notes](https://github.com/jsdom/jsdom/releases) - [Changelog](https://github.com/jsdom/jsdom/blob/main/Changelog.md) - [Commits](https://github.com/jsdom/jsdom/compare/24.1.3...25.0.0) Updates `puppeteer` from 22.15.0 to 23.2.0 - [Release notes](https://github.com/puppeteer/puppeteer/releases) - [Changelog](https://github.com/puppeteer/puppeteer/blob/main/release-please-config.json) - [Commits](https://github.com/puppeteer/puppeteer/compare/puppeteer-v22.15.0...puppeteer-v23.2.0) --- updated-dependencies: - dependency-name: "@antv/g6" dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: eslint-plugin-lodash dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: jsdom dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: puppeteer dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Update package.json Signed-off-by: lijianan <574980606@qq.com> * Update package.json Signed-off-by: lijianan <574980606@qq.com> * Update package.json Signed-off-by: lijianan <574980606@qq.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: lijianan <574980606@qq.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: lijianan <574980606@qq.com>
2024-08-28 08:00:25 +08:00
"jsdom": "^25.0.0",
docs: v5 site upgrade (#38328) * build: try to use dumi as doc tool * docs: migrate demo structure to dumi way * refactor: use type export & import * docs: migrate demo previewer to dumi * docs: create empty layout & components * docs: apply custom rehype plugin * docs: create empty extra pages * docs: Add Banner component * chore: move theme tsconfig.json * docs: home page init * docs: migrate header (#37896) * docs: header * docs: update * docs: home init * clean up * test: fix site lint * chore: tsc ignore demo * chore: dumi demo migrate script * chore: cards * docs: home layout * docs: Update locale logic * docs: fix getLink logic * chore: fix ci (#37899) * chore: fix ci * ci: remove check-ts-demo * ci: preview build * test: ignore demo.tsx * chore: update script * test: update snapshot * test: update node and image test * chore: add .surgeignore * docs: layout providers (#37908) * docs: add components sidebar (#37923) * docs: sidebar * docs: update docs title * docs: update design doc * chore: code clean * docs: handle changelog page * docs: add title * docs: add subtitle * docs: active header nav * chore: code clean * docs: overview * chore: code clean * docs: update intl (#37918) * docs: update intl * chore: code clean * docs: update favicons * chore: update testPathIgnorePatterns * chore: code clean * chore: code clean * chore: copy 404.html (#37996) * docs: Home page theme picker * chore: Update migrate script * docs: home page update * docs: theme editor style * docs: theme lang * chore: update migrate.js * docs: fix demo (#38094) * chore: update migrate.js * docs: update md * docs: update demo * test: fix snapshot * chore: move debug to code attr in migrate script * chore: update md Co-authored-by: PeachScript <scdzwyxst@gmail.com> * feat: overview page * feat: Migrate `404` page (#38118) * feat: migrate IconSearch component (#37916) * feat<site/IconSearch>: copy IconDisplay from site to .dumi * feat<site/IconSearch>: change docs of icon * feat<site/IconSearch>: tweak * feat<site/IconSearch>: use useIntl instead of injectIntl * feat<site/IconSearch>: fix ts type error * feat<site/IconSearch>: use intl.formatMessage to render text * docs: Adjust home btn sizw * docs: Update doc * feat: v5 site overview page (#38131) * feat: site * fix: fix * feat: v5 site overview page * fix: fix path * fix: fix * fix: fix * docs: fix margin logic * feat: v5 site change-log page (#38137) * feat: v5 site change-log page (#38162) * docs: site redirect to home pag * docs: theme picker * docs: use react-intl from dumi (#38183) * docs: Theme Picker * docs: update dumi config * docs: home back fix * docs: picker colorful * docs: locale of it * docs: update components desc * docs: site of links * docs: update components list * docs: update desc * feat: Migrate `DemoWrapper` component (#38166) * feat: Migrate `DemoWrapper` component * feat: remove invalid comments and add comment for `key` prop * docs: FloatButton pure panel * chore: update demo * chore: update dumi config * Revert "chore: update demo" This reverts commit 028265d3ba5987df5f13c3e9d42cf76cb1812b2e. * chore: test logic adjust to support cnpm modules * chore: add locale alias * docs: /index to / * docs: add locale redirect head script * chore: adjust compact * docs: fix missing token * feat: compact switch * chore: code clean * docs: update home * docs: fix radius token * docs: hash of it * chore: adjust home page * docs: Add background map * docs: site theme bac logic * docs: avatar * docs: update logo color * docs: home banner * docs: adjust tour size * docs: purepanl update * docs: transfooter * docs: update banner gif * docs: content (#38361) * docs: title & EditButton * docs: content * chore: fix toc * docs: resource page * docs: transform resource data from hast * docs: filename & Resource Card * chore: enable prerender * chore: remove less * docs: toc style * chore: fix lint * docs: fix Layout page * docs: fix CP page * chore: update demos * docs: workaround for export dynamic html * chore: enable demo eslint * docs: table style * fix: header shadow * chore: update snapshot * fix: toc style * docs: add title * docs: Adjust site * feat: helmet * docs: site css * fix: description * feat: toc debug * docs: update config-provider * feat: use colorPanel * fix: colorPanel value * feat: anchor ink ball style * feat: apply theme editor * fix: code block style * chore: update demo * chore: fix lint * chore: code clean * chore: update snapshot * feat: ts2js * chore: description * docs: site ready for ssr includes: - move client render logic to useEffect in site theme - extract antd cssinjs to a single css file like bisheng - workaround to support react@18 pipeableStream for emotion * chore: bump testing lib * docs: font size of title * chore: remove react-sortable-hoc * chore: update snapshot * chore: update script Co-authored-by: PeachScript <scdzwyxst@gmail.com> Co-authored-by: MadCcc <1075746765@qq.com> Co-authored-by: zqran <uuxnet@gmail.com> Co-authored-by: TrickyPi <530257315@qq.com> Co-authored-by: lijianan <574980606@qq.com>
2022-11-09 12:28:04 +08:00
"jsonml-to-react-element": "^1.1.11",
2016-04-06 16:11:30 +08:00
"jsonml.js": "^0.1.0",
2024-09-16 17:23:52 +08:00
"lint-staged": "^15.2.10",
"lodash": "^4.17.21",
chore(deps-dev): bump the dev-dependencies group with 9 updates (#47947) Updates the requirements on [@ianvs/prettier-plugin-sort-imports](https://github.com/ianvs/prettier-plugin-sort-imports), [@size-limit/file](https://github.com/ai/size-limit), [eslint-plugin-markdown](https://github.com/eslint/eslint-plugin-markdown), [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react), [lunar-typescript](https://github.com/6tail/lunar-typescript), [puppeteer](https://github.com/puppeteer/puppeteer), [react-countup](https://github.com/glennreyes/react-countup), [simple-git](https://github.com/steveukx/git-js/tree/HEAD/simple-git) and [size-limit](https://github.com/ai/size-limit) to permit the latest version. Updates `@ianvs/prettier-plugin-sort-imports` to 4.2.1 - [Release notes](https://github.com/ianvs/prettier-plugin-sort-imports/releases) - [Changelog](https://github.com/IanVS/prettier-plugin-sort-imports/blob/main/CHANGELOG.md) - [Commits](https://github.com/ianvs/prettier-plugin-sort-imports/compare/v4.2.0...v4.2.1) Updates `@size-limit/file` to 11.1.1 - [Release notes](https://github.com/ai/size-limit/releases) - [Changelog](https://github.com/ai/size-limit/blob/main/CHANGELOG.md) - [Commits](https://github.com/ai/size-limit/compare/11.1.0...11.1.1) Updates `eslint-plugin-markdown` to 4.0.1 - [Release notes](https://github.com/eslint/eslint-plugin-markdown/releases) - [Changelog](https://github.com/eslint/eslint-plugin-markdown/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint-plugin-markdown/compare/v4.0.0...v4.0.1) Updates `eslint-plugin-react` to 7.34.1 - [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases) - [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/v7.34.1/CHANGELOG.md) - [Commits](https://github.com/jsx-eslint/eslint-plugin-react/compare/v7.34.0...v7.34.1) Updates `lunar-typescript` to 1.7.5 - [Release notes](https://github.com/6tail/lunar-typescript/releases) - [Changelog](https://github.com/6tail/lunar-typescript/blob/master/CHANGELOG.md) - [Commits](https://github.com/6tail/lunar-typescript/compare/v1.7.4...v1.7.5) Updates `puppeteer` to 22.5.0 - [Release notes](https://github.com/puppeteer/puppeteer/releases) - [Changelog](https://github.com/puppeteer/puppeteer/blob/main/release-please-config.json) - [Commits](https://github.com/puppeteer/puppeteer/compare/puppeteer-v22.4.1...puppeteer-v22.5.0) Updates `react-countup` to 6.5.1 - [Release notes](https://github.com/glennreyes/react-countup/releases) - [Commits](https://github.com/glennreyes/react-countup/compare/v6.5.0...v6.5.1) Updates `simple-git` to 3.23.0 - [Release notes](https://github.com/steveukx/git-js/releases) - [Changelog](https://github.com/steveukx/git-js/blob/main/simple-git/CHANGELOG.md) - [Commits](https://github.com/steveukx/git-js/commits/simple-git@3.23.0/simple-git) Updates `size-limit` to 11.1.1 - [Release notes](https://github.com/ai/size-limit/releases) - [Changelog](https://github.com/ai/size-limit/blob/main/CHANGELOG.md) - [Commits](https://github.com/ai/size-limit/compare/11.1.0...11.1.1) --- updated-dependencies: - dependency-name: "@ianvs/prettier-plugin-sort-imports" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@size-limit/file" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint-plugin-markdown dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint-plugin-react dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: lunar-typescript dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: puppeteer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: react-countup dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: simple-git dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: size-limit dependency-type: direct:development dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-18 21:07:56 +08:00
"lunar-typescript": "^1.7.5",
2023-11-23 20:43:11 +08:00
"lz-string": "^1.5.0",
"minimist": "^1.2.8",
2023-11-23 20:43:11 +08:00
"mockdate": "^3.0.5",
"node-fetch": "^3.3.2",
"node-notifier": "^10.0.1",
2023-08-02 14:04:29 +08:00
"nprogress": "^0.2.0",
chore(deps-dev): bump the dev-dependencies group with 4 updates (#47829) * chore(deps-dev): bump the dev-dependencies group with 5 updates Updates the requirements on [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome), [eslint-plugin-markdown](https://github.com/eslint/eslint-plugin-markdown), [immer](https://github.com/immerjs/immer), [open](https://github.com/sindresorhus/open) and [puppeteer](https://github.com/puppeteer/puppeteer) to permit the latest version. Updates `@biomejs/biome` to 1.6.0 - [Release notes](https://github.com/biomejs/biome/releases) - [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG.md) - [Commits](https://github.com/biomejs/biome/commits/cli/v1.6.0/packages/@biomejs/biome) Updates `eslint-plugin-markdown` from 3.0.1 to 4.0.1 - [Release notes](https://github.com/eslint/eslint-plugin-markdown/releases) - [Changelog](https://github.com/eslint/eslint-plugin-markdown/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint-plugin-markdown/compare/v3.0.1...v4.0.1) Updates `immer` to 10.0.4 - [Release notes](https://github.com/immerjs/immer/releases) - [Commits](https://github.com/immerjs/immer/compare/v10.0.3...v10.0.4) Updates `open` to 10.1.0 - [Release notes](https://github.com/sindresorhus/open/releases) - [Commits](https://github.com/sindresorhus/open/compare/v10.0.4...v10.1.0) Updates `puppeteer` to 22.4.1 - [Release notes](https://github.com/puppeteer/puppeteer/releases) - [Changelog](https://github.com/puppeteer/puppeteer/blob/main/release-please-config.json) - [Commits](https://github.com/puppeteer/puppeteer/compare/puppeteer-v22.4.0...puppeteer-v22.4.1) --- updated-dependencies: - dependency-name: "@biomejs/biome" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint-plugin-markdown dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: immer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: open dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: puppeteer dependency-type: direct:development dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Update package.json Signed-off-by: lijianan <574980606@qq.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: lijianan <574980606@qq.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: lijianan <574980606@qq.com>
2024-03-12 08:16:36 +08:00
"open": "^10.1.0",
2024-09-16 17:23:52 +08:00
"ora": "^8.1.0",
"p-all": "^5.0.0",
"pixelmatch": "^6.0.0",
"pngjs": "^7.0.0",
"prettier": "^3.3.3",
2023-11-14 02:59:19 +08:00
"pretty-format": "^29.7.0",
docs: v5 site upgrade (#38328) * build: try to use dumi as doc tool * docs: migrate demo structure to dumi way * refactor: use type export & import * docs: migrate demo previewer to dumi * docs: create empty layout & components * docs: apply custom rehype plugin * docs: create empty extra pages * docs: Add Banner component * chore: move theme tsconfig.json * docs: home page init * docs: migrate header (#37896) * docs: header * docs: update * docs: home init * clean up * test: fix site lint * chore: tsc ignore demo * chore: dumi demo migrate script * chore: cards * docs: home layout * docs: Update locale logic * docs: fix getLink logic * chore: fix ci (#37899) * chore: fix ci * ci: remove check-ts-demo * ci: preview build * test: ignore demo.tsx * chore: update script * test: update snapshot * test: update node and image test * chore: add .surgeignore * docs: layout providers (#37908) * docs: add components sidebar (#37923) * docs: sidebar * docs: update docs title * docs: update design doc * chore: code clean * docs: handle changelog page * docs: add title * docs: add subtitle * docs: active header nav * chore: code clean * docs: overview * chore: code clean * docs: update intl (#37918) * docs: update intl * chore: code clean * docs: update favicons * chore: update testPathIgnorePatterns * chore: code clean * chore: code clean * chore: copy 404.html (#37996) * docs: Home page theme picker * chore: Update migrate script * docs: home page update * docs: theme editor style * docs: theme lang * chore: update migrate.js * docs: fix demo (#38094) * chore: update migrate.js * docs: update md * docs: update demo * test: fix snapshot * chore: move debug to code attr in migrate script * chore: update md Co-authored-by: PeachScript <scdzwyxst@gmail.com> * feat: overview page * feat: Migrate `404` page (#38118) * feat: migrate IconSearch component (#37916) * feat<site/IconSearch>: copy IconDisplay from site to .dumi * feat<site/IconSearch>: change docs of icon * feat<site/IconSearch>: tweak * feat<site/IconSearch>: use useIntl instead of injectIntl * feat<site/IconSearch>: fix ts type error * feat<site/IconSearch>: use intl.formatMessage to render text * docs: Adjust home btn sizw * docs: Update doc * feat: v5 site overview page (#38131) * feat: site * fix: fix * feat: v5 site overview page * fix: fix path * fix: fix * fix: fix * docs: fix margin logic * feat: v5 site change-log page (#38137) * feat: v5 site change-log page (#38162) * docs: site redirect to home pag * docs: theme picker * docs: use react-intl from dumi (#38183) * docs: Theme Picker * docs: update dumi config * docs: home back fix * docs: picker colorful * docs: locale of it * docs: update components desc * docs: site of links * docs: update components list * docs: update desc * feat: Migrate `DemoWrapper` component (#38166) * feat: Migrate `DemoWrapper` component * feat: remove invalid comments and add comment for `key` prop * docs: FloatButton pure panel * chore: update demo * chore: update dumi config * Revert "chore: update demo" This reverts commit 028265d3ba5987df5f13c3e9d42cf76cb1812b2e. * chore: test logic adjust to support cnpm modules * chore: add locale alias * docs: /index to / * docs: add locale redirect head script * chore: adjust compact * docs: fix missing token * feat: compact switch * chore: code clean * docs: update home * docs: fix radius token * docs: hash of it * chore: adjust home page * docs: Add background map * docs: site theme bac logic * docs: avatar * docs: update logo color * docs: home banner * docs: adjust tour size * docs: purepanl update * docs: transfooter * docs: update banner gif * docs: content (#38361) * docs: title & EditButton * docs: content * chore: fix toc * docs: resource page * docs: transform resource data from hast * docs: filename & Resource Card * chore: enable prerender * chore: remove less * docs: toc style * chore: fix lint * docs: fix Layout page * docs: fix CP page * chore: update demos * docs: workaround for export dynamic html * chore: enable demo eslint * docs: table style * fix: header shadow * chore: update snapshot * fix: toc style * docs: add title * docs: Adjust site * feat: helmet * docs: site css * fix: description * feat: toc debug * docs: update config-provider * feat: use colorPanel * fix: colorPanel value * feat: anchor ink ball style * feat: apply theme editor * fix: code block style * chore: update demo * chore: fix lint * chore: code clean * chore: update snapshot * feat: ts2js * chore: description * docs: site ready for ssr includes: - move client render logic to useEffect in site theme - extract antd cssinjs to a single css file like bisheng - workaround to support react@18 pipeableStream for emotion * chore: bump testing lib * docs: font size of title * chore: remove react-sortable-hoc * chore: update snapshot * chore: update script Co-authored-by: PeachScript <scdzwyxst@gmail.com> Co-authored-by: MadCcc <1075746765@qq.com> Co-authored-by: zqran <uuxnet@gmail.com> Co-authored-by: TrickyPi <530257315@qq.com> Co-authored-by: lijianan <574980606@qq.com>
2022-11-09 12:28:04 +08:00
"prismjs": "^1.29.0",
2024-09-16 17:23:52 +08:00
"puppeteer": "^23.3.0",
"qs": "^6.13.0",
"rc-footer": "^0.6.8",
2023-11-25 05:25:29 +08:00
"rc-tween-one": "^3.0.6",
"rc-virtual-list": "^3.14.5",
"react": "^18.3.1",
2023-11-25 05:25:29 +08:00
"react-copy-to-clipboard": "^5.1.0",
"react-countup": "^6.5.3",
"react-dom": "^18.3.1",
2023-11-25 05:25:29 +08:00
"react-draggable": "^4.4.6",
"react-fast-marquee": "^1.6.5",
"react-highlight-words": "^0.20.0",
"react-infinite-scroll-component": "^6.1.0",
2024-09-16 17:23:52 +08:00
"react-intersection-observer": "^9.13.1",
2023-11-25 05:25:29 +08:00
"react-resizable": "^3.0.5",
2024-09-16 17:23:52 +08:00
"react-router-dom": "^6.26.2",
2023-11-25 05:25:29 +08:00
"react-sticky-box": "^2.0.5",
chore(deps-dev): bump the dev-dependencies group with 41 updates (#46657) * chore(deps-dev): bump the dev-dependencies group with 41 updates Updates the requirements on [@antv/g6](https://github.com/antvis/g6), [@babel/eslint-plugin](https://github.com/babel/babel/tree/HEAD/eslint/babel-eslint-plugin), [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome), [@emotion/react](https://github.com/emotion-js/emotion), [@size-limit/file](https://github.com/ai/size-limit), [@testing-library/jest-dom](https://github.com/testing-library/jest-dom), [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest), [@types/jest-axe](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest-axe), [@types/jest-image-snapshot](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest-image-snapshot), [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [@types/qs](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/qs), [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react), [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom), [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser), [ali-oss](https://github.com/ali-sdk/ali-oss), [antd-img-crop](https://github.com/nanxiaobei/antd-img-crop), [antd-style](https://github.com/ant-design/antd-style), [chalk](https://github.com/chalk/chalk), [dumi-plugin-color-chunk](https://github.com/Wxh16144/dumi-plugin-color-chunk), [eslint](https://github.com/eslint/eslint), [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier), [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import), [fs-extra](https://github.com/jprichardson/node-fs-extra), [gh-pages](https://github.com/tschaub/gh-pages), [jest-image-snapshot](https://github.com/americanexpress/jest-image-snapshot), [jest-puppeteer](https://github.com/argos-ci/jest-puppeteer/tree/HEAD/packages/jest-puppeteer), [jsdom](https://github.com/jsdom/jsdom), [lint-staged](https://github.com/okonet/lint-staged), [open](https://github.com/sindresorhus/open), [prettier](https://github.com/prettier/prettier), [prettier-plugin-jsdoc](https://github.com/hosseinmd/prettier-plugin-jsdoc), [puppeteer](https://github.com/puppeteer/puppeteer), [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom), [regenerator-runtime](https://github.com/facebook/regenerator), [sharp](https://github.com/lovell/sharp), [size-limit](https://github.com/ai/size-limit), [stylelint](https://github.com/stylelint/stylelint), [terser](https://github.com/terser/terser), [tsx](https://github.com/privatenumber/tsx) and [typescript](https://github.com/Microsoft/TypeScript) to permit the latest version. Updates `@antv/g6` to 4.8.24 - [Release notes](https://github.com/antvis/g6/releases) - [Changelog](https://github.com/antvis/G6/blob/master/CHANGELOG.md) - [Commits](https://github.com/antvis/g6/commits) Updates `@babel/eslint-plugin` to 7.23.5 - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.23.5/eslint/babel-eslint-plugin) Updates `@biomejs/biome` to 1.4.1 - [Release notes](https://github.com/biomejs/biome/releases) - [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG.md) - [Commits](https://github.com/biomejs/biome/commits/cli/v1.4.1/packages/@biomejs/biome) Updates `@emotion/react` to 11.11.3 - [Release notes](https://github.com/emotion-js/emotion/releases) - [Changelog](https://github.com/emotion-js/emotion/blob/main/CHANGELOG.md) - [Commits](https://github.com/emotion-js/emotion/compare/@emotion/react@11.11.1...@emotion/react@11.11.3) Updates `@size-limit/file` to 11.0.1 - [Changelog](https://github.com/ai/size-limit/blob/main/CHANGELOG.md) - [Commits](https://github.com/ai/size-limit/compare/11.0.0...11.0.1) Updates `@testing-library/jest-dom` to 6.1.5 - [Release notes](https://github.com/testing-library/jest-dom/releases) - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md) - [Commits](https://github.com/testing-library/jest-dom/compare/v6.1.4...v6.1.5) Updates `@types/jest` to 29.5.11 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) Updates `@types/jest-axe` to 3.5.9 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest-axe) Updates `@types/jest-image-snapshot` to 6.4.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest-image-snapshot) Updates `@types/node` to 20.10.5 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `@types/qs` to 6.9.11 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/qs) Updates `@types/react` to 18.2.45 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` to 18.2.18 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `@typescript-eslint/eslint-plugin` to 6.16.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.16.0/packages/eslint-plugin) Updates `@typescript-eslint/parser` to 6.16.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.16.0/packages/parser) Updates `ali-oss` to 6.19.0 - [Release notes](https://github.com/ali-sdk/ali-oss/releases) - [Changelog](https://github.com/ali-sdk/ali-oss/blob/master/CHANGELOG.md) - [Commits](https://github.com/ali-sdk/ali-oss/compare/v6.18.1...v6.19.0) Updates `antd-img-crop` to 4.18.0 - [Commits](https://github.com/nanxiaobei/antd-img-crop/commits) Updates `antd-style` to 3.6.1 - [Release notes](https://github.com/ant-design/antd-style/releases) - [Changelog](https://github.com/ant-design/antd-style/blob/master/CHANGELOG.md) - [Commits](https://github.com/ant-design/antd-style/compare/v3.5.2...v3.6.1) Updates `chalk` from 4.1.2 to 5.3.0 - [Release notes](https://github.com/chalk/chalk/releases) - [Commits](https://github.com/chalk/chalk/compare/v4.1.2...v5.3.0) Updates `dumi-plugin-color-chunk` to 1.1.0 - [Release notes](https://github.com/Wxh16144/dumi-plugin-color-chunk/releases) - [Changelog](https://github.com/Wxh16144/dumi-plugin-color-chunk/blob/master/CHANGELOG.md) - [Commits](https://github.com/Wxh16144/dumi-plugin-color-chunk/compare/v1.0.4...v1.1.0) Updates `eslint` to 8.56.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.54.0...v8.56.0) Updates `eslint-config-prettier` to 9.1.0 - [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/eslint-config-prettier/compare/v9.0.0...v9.1.0) Updates `eslint-plugin-import` to 2.29.1 - [Release notes](https://github.com/import-js/eslint-plugin-import/releases) - [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md) - [Commits](https://github.com/import-js/eslint-plugin-import/compare/v2.29.0...v2.29.1) Updates `fs-extra` to 11.2.0 - [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md) - [Commits](https://github.com/jprichardson/node-fs-extra/compare/11.1.1...11.2.0) Updates `gh-pages` to 6.1.1 - [Release notes](https://github.com/tschaub/gh-pages/releases) - [Changelog](https://github.com/tschaub/gh-pages/blob/main/changelog.md) - [Commits](https://github.com/tschaub/gh-pages/compare/v6.1.0...v6.1.1) Updates `jest-image-snapshot` to 6.4.0 - [Release notes](https://github.com/americanexpress/jest-image-snapshot/releases) - [Changelog](https://github.com/americanexpress/jest-image-snapshot/blob/main/CHANGELOG.md) - [Commits](https://github.com/americanexpress/jest-image-snapshot/compare/v6.2.0...v6.4.0) Updates `jest-puppeteer` to 9.0.2 - [Release notes](https://github.com/argos-ci/jest-puppeteer/releases) - [Changelog](https://github.com/argos-ci/jest-puppeteer/blob/main/packages/jest-puppeteer/CHANGELOG.md) - [Commits](https://github.com/argos-ci/jest-puppeteer/commits/v9.0.2/packages/jest-puppeteer) Updates `jsdom` to 23.0.1 - [Release notes](https://github.com/jsdom/jsdom/releases) - [Changelog](https://github.com/jsdom/jsdom/blob/main/Changelog.md) - [Commits](https://github.com/jsdom/jsdom/compare/23.0.0...23.0.1) Updates `lint-staged` to 15.2.0 - [Release notes](https://github.com/okonet/lint-staged/releases) - [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md) - [Commits](https://github.com/okonet/lint-staged/compare/v15.1.0...v15.2.0) Updates `open` to 10.0.1 - [Release notes](https://github.com/sindresorhus/open/releases) - [Commits](https://github.com/sindresorhus/open/compare/v10.0.0...v10.0.1) Updates `prettier` to 3.1.1 - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.1.0...3.1.1) Updates `prettier-plugin-jsdoc` to 1.3.0 - [Release notes](https://github.com/hosseinmd/prettier-plugin-jsdoc/releases) - [Changelog](https://github.com/hosseinmd/prettier-plugin-jsdoc/blob/master/CHANGELOG.md) - [Commits](https://github.com/hosseinmd/prettier-plugin-jsdoc/compare/v1.1.1...v1.3.0) Updates `puppeteer` to 21.6.1 - [Release notes](https://github.com/puppeteer/puppeteer/releases) - [Changelog](https://github.com/puppeteer/puppeteer/blob/main/release-please-config.json) - [Commits](https://github.com/puppeteer/puppeteer/compare/puppeteer-v21.5.2...puppeteer-v21.6.1) Updates `react-router-dom` to 6.21.1 - [Release notes](https://github.com/remix-run/react-router/releases) - [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md) - [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.21.1/packages/react-router-dom) Updates `regenerator-runtime` to 0.14.1 - [Release notes](https://github.com/facebook/regenerator/releases) - [Commits](https://github.com/facebook/regenerator/compare/regenerator-runtime@0.14.0...regenerator-runtime@0.14.1) Updates `sharp` to 0.33.1 - [Release notes](https://github.com/lovell/sharp/releases) - [Changelog](https://github.com/lovell/sharp/blob/main/docs/changelog.md) - [Commits](https://github.com/lovell/sharp/compare/v0.33.0...v0.33.1) Updates `size-limit` to 11.0.1 - [Changelog](https://github.com/ai/size-limit/blob/main/CHANGELOG.md) - [Commits](https://github.com/ai/size-limit/compare/11.0.0...11.0.1) Updates `stylelint` to 16.1.0 - [Release notes](https://github.com/stylelint/stylelint/releases) - [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md) - [Commits](https://github.com/stylelint/stylelint/compare/16.0.0...16.1.0) Updates `terser` to 5.26.0 - [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md) - [Commits](https://github.com/terser/terser/compare/v5.24.0...v5.26.0) Updates `tsx` to 4.7.0 - [Release notes](https://github.com/privatenumber/tsx/releases) - [Changelog](https://github.com/privatenumber/tsx/blob/develop/release.config.cjs) - [Commits](https://github.com/privatenumber/tsx/compare/v4.6.0...v4.7.0) Updates `typescript` to 5.3.3 - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Commits](https://github.com/Microsoft/TypeScript/compare/v5.3.2...v5.3.3) --- updated-dependencies: - dependency-name: "@antv/g6" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@babel/eslint-plugin" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@biomejs/biome" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@emotion/react" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@size-limit/file" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@testing-library/jest-dom" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/jest" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/jest-axe" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/jest-image-snapshot" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/node" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/qs" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/react" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@types/react-dom" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: ali-oss dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: antd-img-crop dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: antd-style dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: chalk dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: dumi-plugin-color-chunk dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint-config-prettier dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint-plugin-import dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: fs-extra dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: gh-pages dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: jest-image-snapshot dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: jest-puppeteer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: jsdom dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: lint-staged dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: open dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: prettier dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: prettier-plugin-jsdoc dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: puppeteer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: react-router-dom dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: regenerator-runtime dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: sharp dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: size-limit dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: stylelint dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: terser dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: tsx dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: typescript dependency-type: direct:development dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Update package.json Signed-off-by: afc163 <afc163@gmail.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: afc163 <afc163@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: afc163 <afc163@gmail.com>
2023-12-27 21:45:21 +08:00
"regenerator-runtime": "^0.14.1",
"rehype-stringify": "^10.0.0",
"remark": "^15.0.1",
chore(deps-dev): bump the dev-dependencies group with 3 updates (#48728) * chore(deps-dev): bump the dev-dependencies group with 3 updates Updates the requirements on [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome), [eslint](https://github.com/eslint/eslint), [remark-cli](https://github.com/remarkjs/remark) and [tsx](https://github.com/privatenumber/tsx) to permit the latest version. Updates `@biomejs/biome` to 1.7.2 - [Release notes](https://github.com/biomejs/biome/releases) - [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG.md) - [Commits](https://github.com/biomejs/biome/commits/cli/v1.7.2/packages/@biomejs/biome) Updates `eslint` from 8.57.0 to 9.1.1 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.57.0...v9.1.1) Updates `remark-cli` to 12.0.1 - [Release notes](https://github.com/remarkjs/remark/releases) - [Changelog](https://github.com/remarkjs/remark/blob/main/changelog.md) - [Commits](https://github.com/remarkjs/remark/compare/remark-cli@12.0.0...remark-cli@12.0.1) Updates `tsx` to 4.8.2 - [Release notes](https://github.com/privatenumber/tsx/releases) - [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs) - [Commits](https://github.com/privatenumber/tsx/compare/v4.7.3...v4.8.2) --- updated-dependencies: - dependency-name: "@biomejs/biome" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: remark-cli dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: tsx dependency-type: direct:development dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Update package.json Signed-off-by: lijianan <574980606@qq.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: lijianan <574980606@qq.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: lijianan <574980606@qq.com>
2024-05-01 21:00:57 +08:00
"remark-cli": "^12.0.1",
"remark-gfm": "^4.0.0",
"remark-lint": "^10.0.0",
"remark-lint-no-undefined-references": "^5.0.0",
"remark-preset-lint-recommended": "^7.0.0",
"remark-rehype": "^11.1.0",
"rimraf": "^6.0.1",
chore(deps-dev): bump the dev-dependencies group with 6 updates (#47246) Updates the requirements on [@testing-library/jest-dom](https://github.com/testing-library/jest-dom), [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser), [husky](https://github.com/typicode/husky), [puppeteer](https://github.com/puppeteer/puppeteer) and [runes2](https://github.com/bluelovers/ws-string/tree/HEAD/packages/runes2) to permit the latest version. Updates `@testing-library/jest-dom` to 6.4.0 - [Release notes](https://github.com/testing-library/jest-dom/releases) - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md) - [Commits](https://github.com/testing-library/jest-dom/compare/v6.3.0...v6.4.0) Updates `@typescript-eslint/eslint-plugin` to 6.20.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.20.0/packages/eslint-plugin) Updates `@typescript-eslint/parser` to 6.20.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.20.0/packages/parser) Updates `husky` to 9.0.7 - [Release notes](https://github.com/typicode/husky/releases) - [Commits](https://github.com/typicode/husky/compare/v9.0.6...v9.0.7) Updates `puppeteer` to 21.10.0 - [Release notes](https://github.com/puppeteer/puppeteer/releases) - [Changelog](https://github.com/puppeteer/puppeteer/blob/main/release-please-config.json) - [Commits](https://github.com/puppeteer/puppeteer/compare/puppeteer-v21.9.0...puppeteer-v21.10.0) Updates `runes2` to 1.1.4 - [Changelog](https://github.com/bluelovers/ws-string/blob/master/packages/runes2/CHANGELOG.md) - [Commits](https://github.com/bluelovers/ws-string/commits/runes2@1.1.4/packages/runes2) --- updated-dependencies: - dependency-name: "@testing-library/jest-dom" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: husky dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: puppeteer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: runes2 dependency-type: direct:development dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-30 20:02:05 +08:00
"runes2": "^1.1.4",
2024-09-16 17:23:52 +08:00
"semver": "^7.6.3",
"sharp": "^0.33.5",
"simple-git": "^3.26.0",
"size-limit": "^11.1.5",
"spinnies": "^0.5.1",
docs: v5 site upgrade (#38328) * build: try to use dumi as doc tool * docs: migrate demo structure to dumi way * refactor: use type export & import * docs: migrate demo previewer to dumi * docs: create empty layout & components * docs: apply custom rehype plugin * docs: create empty extra pages * docs: Add Banner component * chore: move theme tsconfig.json * docs: home page init * docs: migrate header (#37896) * docs: header * docs: update * docs: home init * clean up * test: fix site lint * chore: tsc ignore demo * chore: dumi demo migrate script * chore: cards * docs: home layout * docs: Update locale logic * docs: fix getLink logic * chore: fix ci (#37899) * chore: fix ci * ci: remove check-ts-demo * ci: preview build * test: ignore demo.tsx * chore: update script * test: update snapshot * test: update node and image test * chore: add .surgeignore * docs: layout providers (#37908) * docs: add components sidebar (#37923) * docs: sidebar * docs: update docs title * docs: update design doc * chore: code clean * docs: handle changelog page * docs: add title * docs: add subtitle * docs: active header nav * chore: code clean * docs: overview * chore: code clean * docs: update intl (#37918) * docs: update intl * chore: code clean * docs: update favicons * chore: update testPathIgnorePatterns * chore: code clean * chore: code clean * chore: copy 404.html (#37996) * docs: Home page theme picker * chore: Update migrate script * docs: home page update * docs: theme editor style * docs: theme lang * chore: update migrate.js * docs: fix demo (#38094) * chore: update migrate.js * docs: update md * docs: update demo * test: fix snapshot * chore: move debug to code attr in migrate script * chore: update md Co-authored-by: PeachScript <scdzwyxst@gmail.com> * feat: overview page * feat: Migrate `404` page (#38118) * feat: migrate IconSearch component (#37916) * feat<site/IconSearch>: copy IconDisplay from site to .dumi * feat<site/IconSearch>: change docs of icon * feat<site/IconSearch>: tweak * feat<site/IconSearch>: use useIntl instead of injectIntl * feat<site/IconSearch>: fix ts type error * feat<site/IconSearch>: use intl.formatMessage to render text * docs: Adjust home btn sizw * docs: Update doc * feat: v5 site overview page (#38131) * feat: site * fix: fix * feat: v5 site overview page * fix: fix path * fix: fix * fix: fix * docs: fix margin logic * feat: v5 site change-log page (#38137) * feat: v5 site change-log page (#38162) * docs: site redirect to home pag * docs: theme picker * docs: use react-intl from dumi (#38183) * docs: Theme Picker * docs: update dumi config * docs: home back fix * docs: picker colorful * docs: locale of it * docs: update components desc * docs: site of links * docs: update components list * docs: update desc * feat: Migrate `DemoWrapper` component (#38166) * feat: Migrate `DemoWrapper` component * feat: remove invalid comments and add comment for `key` prop * docs: FloatButton pure panel * chore: update demo * chore: update dumi config * Revert "chore: update demo" This reverts commit 028265d3ba5987df5f13c3e9d42cf76cb1812b2e. * chore: test logic adjust to support cnpm modules * chore: add locale alias * docs: /index to / * docs: add locale redirect head script * chore: adjust compact * docs: fix missing token * feat: compact switch * chore: code clean * docs: update home * docs: fix radius token * docs: hash of it * chore: adjust home page * docs: Add background map * docs: site theme bac logic * docs: avatar * docs: update logo color * docs: home banner * docs: adjust tour size * docs: purepanl update * docs: transfooter * docs: update banner gif * docs: content (#38361) * docs: title & EditButton * docs: content * chore: fix toc * docs: resource page * docs: transform resource data from hast * docs: filename & Resource Card * chore: enable prerender * chore: remove less * docs: toc style * chore: fix lint * docs: fix Layout page * docs: fix CP page * chore: update demos * docs: workaround for export dynamic html * chore: enable demo eslint * docs: table style * fix: header shadow * chore: update snapshot * fix: toc style * docs: add title * docs: Adjust site * feat: helmet * docs: site css * fix: description * feat: toc debug * docs: update config-provider * feat: use colorPanel * fix: colorPanel value * feat: anchor ink ball style * feat: apply theme editor * fix: code block style * chore: update demo * chore: fix lint * chore: code clean * chore: update snapshot * feat: ts2js * chore: description * docs: site ready for ssr includes: - move client render logic to useEffect in site theme - extract antd cssinjs to a single css file like bisheng - workaround to support react@18 pipeableStream for emotion * chore: bump testing lib * docs: font size of title * chore: remove react-sortable-hoc * chore: update snapshot * chore: update script Co-authored-by: PeachScript <scdzwyxst@gmail.com> Co-authored-by: MadCcc <1075746765@qq.com> Co-authored-by: zqran <uuxnet@gmail.com> Co-authored-by: TrickyPi <530257315@qq.com> Co-authored-by: lijianan <574980606@qq.com>
2022-11-09 12:28:04 +08:00
"sylvanas": "^0.6.1",
"tar": "^7.4.0",
chore(deps-dev): bump the dev-dependencies group with 9 updates (#48701) * chore(deps-dev): bump the dev-dependencies group with 9 updates --- updated-dependencies: - dependency-name: "@codesandbox/sandpack-react" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@testing-library/dom" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: dumi dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: eslint-plugin-jest dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint-plugin-react-hooks dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: immer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: inquirer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: react-intersection-observer dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: tar-fs dependency-type: direct:development dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Update package.json Signed-off-by: lijianan <574980606@qq.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: lijianan <574980606@qq.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: afc163 <afc163@gmail.com> Co-authored-by: lijianan <574980606@qq.com>
2024-04-29 22:47:46 +08:00
"tar-fs": "^3.0.6",
2024-09-16 17:23:52 +08:00
"terser": "^5.32.0",
"tsx": "4.11.2",
2024-09-16 17:23:52 +08:00
"typedoc": "^0.26.7",
"typescript": "~5.6.2",
"vanilla-jsoneditor": "^0.23.8",
"vanilla-tilt": "^1.8.1",
2024-09-16 17:23:52 +08:00
"webpack": "^5.94.0",
chore(deps-dev): bump the dev-dependencies group with 6 updates (#48408) * chore(deps-dev): bump the dev-dependencies group with 10 updates --- updated-dependencies: - dependency-name: "@codesandbox/sandpack-react" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: "@testing-library/react" dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: "@types/node" dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: remark-lint dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: remark-lint-no-undefined-references dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: remark-preset-lint-recommended dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: tar dependency-type: direct:development update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: typescript dependency-type: direct:development dependency-group: dev-dependencies - dependency-name: webpack-bundle-analyzer dependency-type: direct:development dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Update package.json Signed-off-by: lijianan <574980606@qq.com> * Update package.json Signed-off-by: lijianan <574980606@qq.com> * Update package.json Signed-off-by: lijianan <574980606@qq.com> * Update package.json Signed-off-by: lijianan <574980606@qq.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: lijianan <574980606@qq.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: lijianan <574980606@qq.com>
2024-04-11 22:40:48 +08:00
"webpack-bundle-analyzer": "^4.10.2",
2023-11-23 03:09:24 +08:00
"xhr-mock": "^2.5.1"
2015-05-07 19:54:54 +08:00
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
2015-06-11 16:35:36 +08:00
},
"size-limit": [
{
"path": "./dist/antd.min.js",
feat(Button): support variant and color (#50051) * feat(button): variant & color types * feat: type -> color/variant * feat: type -> color/variant * feat: add variant filled * test: snap * refactor(button): rename type -> variant * docs: add demo * feat: add danger ghost style * refactor: remove deprecated * refactor: eslint * docs: change color&variant * test: updated snap * docs: color-variant * docs: add debug color&variant * feat: global token * refactor: remove comment * docs: add color&variant docs * docs: remove default * docs: add space * docs: code * test: update snap * test: fix snap * test: btn querySelect * feat: change filled hoverStyle * test: fix * feat: support grey wave * refactor: enhance * docs: color/variant -> v 5.21 * test: snap * feat: add token * test: to do * test: fix test * ci: rebuild * style: remove * style: space * docs: add note & FQA * feat: add componentsToken * refactor: remove isNotGrey * test: add case * docs: tile button * test: snap * docs: site & snap * Update components/button/index.en-US.md Co-authored-by: lijianan <574980606@qq.com> Signed-off-by: ice <49827327+coding-ice@users.noreply.github.com> * fix: token color & undef * docs: site * docs: responsive * docs: enhance FAQ * docs: gap middle * test: snap * Update components/theme/interface/maps/colors.ts Co-authored-by: MadCcc <1075746765@qq.com> Signed-off-by: ice <49827327+coding-ice@users.noreply.github.com> * Update components/theme/interface/maps/colors.ts Co-authored-by: MadCcc <1075746765@qq.com> Signed-off-by: ice <49827327+coding-ice@users.noreply.github.com> * Update components/theme/interface/maps/colors.ts Co-authored-by: MadCcc <1075746765@qq.com> Signed-off-by: ice <49827327+coding-ice@users.noreply.github.com> * Update components/button/style/token.ts Co-authored-by: MadCcc <1075746765@qq.com> Signed-off-by: ice <49827327+coding-ice@users.noreply.github.com> * Update components/button/style/token.ts Co-authored-by: MadCcc <1075746765@qq.com> Signed-off-by: ice <49827327+coding-ice@users.noreply.github.com> * refactor: rename * docs: prettier * chore: eslint * refactor: cls * test: add solidTextColor case * refactor: genVariantButtonStyle * refactor: genVariantButtonStyle * refactor: genVariantButtonStyle * fix: rename * docs: text * fix: remove border * feat: add token colorErrorBgFilledHover * chore: add size-limit * refactor: rename --------- Signed-off-by: ice <49827327+coding-ice@users.noreply.github.com> Co-authored-by: lijianan <574980606@qq.com> Co-authored-by: MadCcc <1075746765@qq.com>
2024-09-03 17:39:02 +08:00
"limit": "510 KiB",
"gzip": true
},
{
"path": "./dist/antd-with-locales.min.js",
2024-09-14 14:39:13 +08:00
"limit": "600 KiB",
"gzip": true
}
],
"title": "Ant Design",
2022-11-13 15:38:53 +08:00
"tnpm": {
"mode": "npm"
}
2024-04-14 15:09:20 +08:00
}