mirror of
https://hk.gh-proxy.com/https://github.com/NodeBB/nodebb-plugin-emoji.git
synced 2025-10-03 01:10:57 +08:00
74 lines
2.3 KiB
JSON
74 lines
2.3 KiB
JSON
{
|
|
"name": "nodebb-plugin-emoji",
|
|
"version": "6.0.3",
|
|
"description": "Adds extensible emoji functionality to NodeBB",
|
|
"main": "build/lib",
|
|
"type": "commonjs",
|
|
"author": "Peter Jaszkowiak <p.jaszkow@gmail.com> (https://github.com/pitaj)",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/NodeBB/nodebb-plugin-emoji",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/NodeBB/nodebb-plugin-emoji.git"
|
|
},
|
|
"nbbpm": {
|
|
"compatibility": "^4.0.0"
|
|
},
|
|
"keywords": [
|
|
"nodebb",
|
|
"plugin",
|
|
"emoji",
|
|
"extended"
|
|
],
|
|
"dependencies": {
|
|
"@textcomplete/core": "^0.1.12",
|
|
"@textcomplete/textarea": "^0.1.12",
|
|
"fs-extra": "^11.1.1",
|
|
"lodash": "^4.17.21",
|
|
"mime": "^4.0.4",
|
|
"multer": "^1.4.5-lts.1"
|
|
},
|
|
"devDependencies": {
|
|
"@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"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint . && svelte-check",
|
|
"compile": "tsc -p . && tsc -p public",
|
|
"dev": "npm run compile && cd acp && rollup -c -w",
|
|
"build": "npm run compile && cd acp && rollup -c",
|
|
"pretest": "npm run lint && npm run build",
|
|
"test": "node build/lib/tests.js",
|
|
"prepare": "bash -c 'rm -r build; mkdir -p build/emoji && touch build/emoji/avoid_npm_ignore && npm run test'",
|
|
"publish-all-packs": "bash -c 'for pack in packs/*; do cd $pack; npm publish; cd -; done'"
|
|
}
|
|
}
|