easy-email-pro-plugins 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.es.js +42680 -0
- package/lib/typings/components/EmojiPlugin/index.d.ts +1 -0
- package/lib/typings/components/index.d.ts +1 -0
- package/lib/typings/hooks/index.d.ts +0 -0
- package/lib/typings/index.d.ts +1 -0
- package/lib/typings/type/index.d.ts +0 -0
- package/lib/typings/utils/index.d.ts +0 -0
- package/package.json +33 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function EmojiPlugin(): JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./EmojiPlugin";
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./components";
|
|
File without changes
|
|
File without changes
|
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "easy-email-pro-plugins",
|
|
3
|
+
"version": "1.11.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"files": [
|
|
6
|
+
"lib"
|
|
7
|
+
],
|
|
8
|
+
"main": "lib/index.es.js",
|
|
9
|
+
"module": "lib/index.es.js",
|
|
10
|
+
"types": "lib/typings/index.d.ts",
|
|
11
|
+
"keywords": [],
|
|
12
|
+
"author": "",
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"@emoji-mart/data": "^1.1.2",
|
|
15
|
+
"@emoji-mart/react": "^1.1.1",
|
|
16
|
+
"emoji-mart": "^5.5.2",
|
|
17
|
+
"react": "link:@types/@emoji-mart/react"
|
|
18
|
+
},
|
|
19
|
+
"peerDependencies": {
|
|
20
|
+
"react": "^18.2.0",
|
|
21
|
+
"react-dom": "^18.2.0"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@arco-design/web-react": "^2.46.3",
|
|
25
|
+
"less": "^4.2.0"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build:client": "vite build",
|
|
29
|
+
"build": "npm run build:client && npm run typings",
|
|
30
|
+
"typings": "tsc --declaration --emitDeclarationOnly --project tsconfig.alias.json && tsc-alias -p tsconfig.alias.json",
|
|
31
|
+
"lint": "eslint --fix --ext .tsx,.ts src/"
|
|
32
|
+
}
|
|
33
|
+
}
|