mirror of
https://github.com/strapi/strapi.git
synced 2026-01-06 04:03:25 +00:00
* chore(pack-up): remove from repo * chore: type fixes * chore: add suggestions to tighten types Co-authored-by: Ben Irvin <ben.irvin@strapi.io> --------- Co-authored-by: Ben Irvin <ben.irvin@strapi.io>
99 lines
2.9 KiB
JSON
99 lines
2.9 KiB
JSON
{
|
|
"name": "@strapi/plugin-email",
|
|
"version": "5.0.0-beta.3",
|
|
"description": "Easily configure your Strapi application to send emails.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/strapi/strapi.git"
|
|
},
|
|
"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": {
|
|
"types": "./dist/admin/src/index.d.ts",
|
|
"source": "./admin/src/index.ts",
|
|
"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: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:ts:front": "run -T tsc -p admin/tsconfig.json",
|
|
"watch": "pack-up watch"
|
|
},
|
|
"dependencies": {
|
|
"@strapi/design-system": "1.17.0",
|
|
"@strapi/icons": "1.16.0",
|
|
"@strapi/provider-email-sendmail": "5.0.0-beta.3",
|
|
"@strapi/utils": "5.0.0-beta.3",
|
|
"lodash": "4.17.21",
|
|
"react-intl": "6.6.2",
|
|
"react-query": "3.39.3",
|
|
"yup": "0.32.9"
|
|
},
|
|
"devDependencies": {
|
|
"@strapi/admin": "5.0.0-beta.3",
|
|
"@strapi/pack-up": "5.0.0",
|
|
"@strapi/types": "5.0.0-beta.3",
|
|
"@testing-library/react": "14.0.0",
|
|
"@types/koa": "2.13.4",
|
|
"@types/lodash": "^4.14.191",
|
|
"koa": "2.15.2",
|
|
"koa-body": "6.0.1",
|
|
"msw": "1.3.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-router-dom": "6.22.3",
|
|
"styled-components": "5.3.11"
|
|
},
|
|
"peerDependencies": {
|
|
"@strapi/admin": "^5.0.0 || ^5.0.0-beta || ^5.0.0-alpha || ^5.0.0-rc",
|
|
"koa": "2.13.4",
|
|
"react": "^17.0.0 || ^18.0.0",
|
|
"react-dom": "^17.0.0 || ^18.0.0",
|
|
"react-router-dom": "^6.0.0",
|
|
"styled-components": "^5.2.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0 <=20.x.x",
|
|
"npm": ">=6.0.0"
|
|
},
|
|
"strapi": {
|
|
"name": "email",
|
|
"displayName": "Email",
|
|
"description": "Configure your application to send emails.",
|
|
"required": true,
|
|
"kind": "plugin"
|
|
}
|
|
}
|