An Emoji Picker and Parser
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

67 lines
2.1 KiB

{
"name": "emoji-picker-js",
"version": "0.1.0",
"description": "An Emoji Picker and Parser",
"keywords": [
"emoji",
"javascript"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "index.d.ts",
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c",
"watch": "rollup -cw",
"test": "jest src/**.test.ts",
"test:watch": "jest --watchAll",
"lint": "eslint src/*.ts",
"prettify": "prettier src/*.ts --write"
},
"author": "LOTW <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/lotw7277/emoji-picker-js.git"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.1",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"babel-jest": "^27.5.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"cross-env": "^7.0.3",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.0",
"rollup": "^2.70.1",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@popperjs/core": "^2.11.4",
"focus-trap": "^6.7.3",
"fuzzysort": "^1.2.1",
"tiny-emitter": "^2.1.0",
"tslib": "^2.3.1",
"twemoji": "^14.0.1"
},
"files": [
"dist",
"index.d.ts"
]
}