mirror of
https://github.com/strapi/strapi.git
synced 2026-01-07 20:58:16 +00:00
111 lines
3.0 KiB
JSON
111 lines
3.0 KiB
JSON
{
|
|
"name": "@strapi/upload",
|
|
"version": "5.0.0-rc.20",
|
|
"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": {
|
|
"types": "./dist/server/src/index.d.ts",
|
|
"source": "./server/src/index.ts",
|
|
"import": "./dist/server/index.mjs",
|
|
"require": "./dist/server/index.js",
|
|
"default": "./dist/server/index.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"dist/",
|
|
"strapi-server.js"
|
|
],
|
|
"scripts": {
|
|
"build": "pack-up build",
|
|
"clean": "run -T rimraf dist",
|
|
"lint": "run -T eslint .",
|
|
"test:front": "run -T cross-env IS_EE=true jest --config ./jest.config.front.js",
|
|
"test:unit": "run -T jest",
|
|
"test:unit:watch": "run -T jest --watch",
|
|
"watch": "pack-up watch"
|
|
},
|
|
"dependencies": {
|
|
"@strapi/design-system": "2.0.0-rc.10",
|
|
"@strapi/icons": "2.0.0-rc.10",
|
|
"@strapi/provider-upload-local": "workspace:*",
|
|
"@strapi/utils": "workspace:*",
|
|
"byte-size": "8.1.1",
|
|
"cropperjs": "1.6.1",
|
|
"date-fns": "2.30.0",
|
|
"formik": "2.4.5",
|
|
"fs-extra": "11.2.0",
|
|
"immer": "9.0.21",
|
|
"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": "16.0.1",
|
|
"react-intl": "6.6.2",
|
|
"react-query": "3.39.3",
|
|
"react-redux": "8.1.3",
|
|
"react-select": "5.8.0",
|
|
"sharp": "0.32.6",
|
|
"yup": "0.32.9"
|
|
},
|
|
"devDependencies": {
|
|
"@strapi/admin": "workspace:*",
|
|
"@strapi/pack-up": "5.0.0",
|
|
"@strapi/types": "workspace:*",
|
|
"@testing-library/dom": "10.1.0",
|
|
"@testing-library/react": "15.0.7",
|
|
"@testing-library/user-event": "14.5.2",
|
|
"@types/fs-extra": "11.0.4",
|
|
"@types/koa": "2.13.4",
|
|
"@types/koa-range": "0.3.5",
|
|
"@types/koa-static": "4.0.2",
|
|
"formidable": "3.5.1",
|
|
"koa": "2.15.2",
|
|
"koa-body": "6.0.1",
|
|
"msw": "1.3.0",
|
|
"react": "18.3.1",
|
|
"react-dom": "18.3.1",
|
|
"react-router-dom": "6.22.3",
|
|
"styled-components": "6.1.8"
|
|
},
|
|
"peerDependencies": {
|
|
"@strapi/admin": "^5.0.0 || ^5.0.0-beta || ^5.0.0-alpha || ^5.0.0-rc",
|
|
"react": "^17.0.0 || ^18.0.0",
|
|
"react-dom": "^17.0.0 || ^18.0.0",
|
|
"react-router-dom": "^6.0.0",
|
|
"styled-components": "^6.0.0"
|
|
},
|
|
"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"
|
|
}
|
|
}
|