-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.23 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "emoji-mixer",
"version": "1.2.2",
"description": "Get a Google Emoji Kitchen mixed emoji .png link from 2 other emojis. (and some more)",
"type": "module",
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "webpack --config webpack.cjs.config.cjs",
"build:esm": "webpack --config webpack.esm.config.cjs",
"prepublishOnly": "npm run build"
},
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"devDependencies": {
"terser-webpack-plugin": "^5.3.14",
"webpack": "^5.99.5",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"emoji-regex": "^10.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MattFor/emoji-mixer.git"
},
"keywords": [
"emoji",
"mix",
"mixing",
"combination",
"google",
"kitchen"
],
"author": "MattFor",
"license": "MIT",
"bugs": {
"url": "https://github.com/MattFor/emoji-mixer/issues"
},
"homepage": "https://github.com/MattFor/emoji-mixer#readme"
}