nodebb-plugin-emoji/package.json

75 lines
2.3 KiB
JSON
Raw Normal View History

2017-09-06 16:15:41 -06:00
{
"name": "nodebb-plugin-emoji",
2025-06-09 17:21:38 -04:00
"version": "6.0.4",
2017-09-06 16:15:41 -06:00
"description": "Adds extensible emoji functionality to NodeBB",
"main": "build/lib",
"type": "commonjs",
2017-09-06 16:15:41 -06:00
"author": "Peter Jaszkowiak <p.jaszkow@gmail.com> (https://github.com/pitaj)",
"license": "MIT",
2021-02-03 21:35:21 -07:00
"homepage": "https://github.com/NodeBB/nodebb-plugin-emoji",
2017-09-06 16:15:41 -06:00
"repository": {
"type": "git",
"url": "https://github.com/NodeBB/nodebb-plugin-emoji.git"
},
"nbbpm": {
2024-11-17 20:17:54 -07:00
"compatibility": "^4.0.0"
2017-09-06 16:15:41 -06:00
},
"keywords": [
"nodebb",
"plugin",
"emoji",
"extended"
],
2017-06-25 17:34:01 -06:00
"dependencies": {
"@textcomplete/core": "^0.1.12",
2023-07-04 21:27:45 -06:00
"@textcomplete/textarea": "^0.1.12",
"fs-extra": "^11.1.1",
"lodash": "^4.17.21",
2024-11-09 14:39:06 -07:00
"mime": "^4.0.4",
2023-07-04 21:27:45 -06:00
"multer": "^1.4.5-lts.1"
2017-06-25 17:34:01 -06:00
},
"devDependencies": {
2023-07-04 21:27:45 -06:00
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.2",
"@rollup/plugin-virtual": "^3.0.1",
"@tsconfig/svelte": "^5.0.0",
"@types/bootstrap": "^5.2.6",
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/jquery": "^3.5.16",
"@types/lodash": "^4.14.195",
"@types/multer": "^1.4.7",
"@types/nconf": "^0.10.3",
"@types/node": "^20.3.3",
"@types/semver": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-svelte": "^2.32.2",
"rollup": "^3.26.0",
"rollup-plugin-css-only": "^4.3.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-svelte": "^7.1.6",
"semver": "^7.5.3",
"svelte": "^4.0.4",
"svelte-check": "^3.4.4",
"svelte-eslint-parser": "^0.32.0",
"svelte-preprocess": "^5.0.4",
"tslib": "^2.6.0",
"typescript": "^5.1.6"
2017-06-25 17:34:01 -06:00
},
2017-09-06 16:15:41 -06:00
"scripts": {
2021-02-22 19:13:03 -07:00
"lint": "eslint . && svelte-check",
2017-09-06 16:15:41 -06:00
"compile": "tsc -p . && tsc -p public",
2021-02-22 19:13:03 -07:00
"dev": "npm run compile && cd acp && rollup -c -w",
"build": "npm run compile && cd acp && rollup -c",
"pretest": "npm run lint && npm run build",
2021-02-03 21:35:21 -07:00
"test": "node build/lib/tests.js",
2025-06-09 17:21:29 -04:00
"prepare": "bash prepare.sh",
2024-11-24 22:10:52 -07:00
"publish-all-packs": "bash -c 'for pack in packs/*; do cd $pack; npm publish; cd -; done'"
2017-09-06 16:15:41 -06:00
}
2017-09-08 17:01:34 -06:00
}