-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.52 KB
/
package.json
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
{
"name": "custom-emojis",
"version": "1.0.1",
"description": "A system for managing emojis on web pages. The essence of the library is to provide an opportunity to dynamically convert shortcodes (For example: /smile/) into small images directly in the text, including the input field. You can specify emojis very conveniently: either directly in HTML/JS when declaring a class, or by setting the path to a Json file with all your emojis in the settings. And replace shortcodes with emojis in certain HTML elements specified by you and dynamically in certain text input fields.",
"main": "dist/custom-emojis.cjs.js",
"module": "dist/custom-emojis.esm.js",
"browser": "dist/custom-emojis.umd.js",
"type": "module",
"scripts": {
"build": "rollup -c",
"test": "node test/spec",
"pretest": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wlad1slav/Custom-Emojis-for-Your-Site.git"
},
"keywords": [
"emojis",
"emoji",
"custom-emoji",
"custom-emojis"
],
"author": "Vladyslav Fokin",
"license": "MIT",
"bugs": {
"url": "https://github.com/Wlad1slav/Custom-Emojis-for-Your-Site/issues"
},
"homepage": "https://github.com/Wlad1slav/Custom-Emojis-for-Your-Site#readme",
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"files": [
"dist",
"scripts"
]
}