strapi/packages/core/upload/package.json
2023-11-12 11:09:55 +01:00

104 lines
3.0 KiB
JSON

{
"name": "@strapi/plugin-upload",
"version": "4.15.4",
"description": "Makes it easy to upload images and files to your Strapi Application.",
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "Strapi Solutions SAS",
"email": "hi@strapi.io",
"url": "https://strapi.io"
},
"maintainers": [
{
"name": "Strapi Solutions SAS",
"email": "hi@strapi.io",
"url": "https://strapi.io"
}
],
"exports": {
"./strapi-admin": {
"source": "./admin/src/index.js",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"source": "./strapi-server.js",
"require": "./strapi-server.js",
"default": "./strapi-server.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "pack-up build",
"clean": "run -T rimraf dist",
"lint": "run -T eslint .",
"prepublishOnly": "yarn clean && yarn build",
"test:front": "run -T cross-env IS_EE=true jest --config ./jest.config.front.js",
"test:front:ce": "run -T cross-env IS_EE=false jest --config ./jest.config.front.js",
"test:front:watch": "run -T cross-env IS_EE=true jest --config ./jest.config.front.js --watchAll",
"test:front:watch:ce": "run -T cross-env IS_EE=false jest --config ./jest.config.front.js --watchAll",
"test:unit": "run -T jest",
"test:unit:watch": "run -T jest --watch",
"watch": "pack-up watch"
},
"dependencies": {
"@strapi/design-system": "1.13.1",
"@strapi/helper-plugin": "4.15.4",
"@strapi/icons": "1.13.0",
"@strapi/provider-upload-local": "4.15.4",
"@strapi/utils": "4.15.4",
"axios": "1.5.0",
"byte-size": "7.0.1",
"cropperjs": "1.6.0",
"date-fns": "2.30.0",
"formik": "2.4.0",
"fs-extra": "10.0.0",
"immer": "9.0.19",
"koa-range": "0.3.0",
"koa-static": "5.0.0",
"lodash": "4.17.21",
"mime-types": "2.1.35",
"prop-types": "^15.8.1",
"qs": "6.11.1",
"react-dnd": "15.1.2",
"react-helmet": "^6.1.0",
"react-intl": "6.4.1",
"react-query": "3.39.3",
"react-redux": "8.1.1",
"react-select": "5.7.0",
"sharp": "0.32.6",
"yup": "0.32.9"
},
"devDependencies": {
"@strapi/pack-up": "4.15.4",
"@strapi/strapi": "4.15.4",
"@testing-library/dom": "9.2.0",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"msw": "1.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "5.3.4",
"styled-components": "5.3.3"
},
"peerDependencies": {
"@strapi/strapi": "^4.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"react-router-dom": "^5.2.0",
"styled-components": "^5.2.1"
},
"engines": {
"node": ">=18.0.0 <=20.x.x",
"npm": ">=6.0.0"
},
"strapi": {
"displayName": "Media Library",
"name": "upload",
"description": "Media file management.",
"required": true,
"kind": "plugin"
}
}